Dbms Lab Manual
Dbms Lab Manual
List of Experiments:
1. Concept design with E-R Model
2. Relational Model
3. Normalization
13.Usage of Cursors
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
ER-MODEL
Describes data as entities, relationships and attributes .The ER-Model is important
preliminary for its role in database design. ER Model is usually shown pictorially using entity
relationship diagrams.
ATTRIBUTES
The properties that characterize an entity set are called its attributes. An attribute is referred
to by the terms data items, data element, data field item.
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
Candidate key:
It can be defined as minimal super key or irreducible super key. In other words an attribute or
combination of attributes that identifies the record uniquely but none of its proper subsets can
identify the record uniquely.
Busno serviceno source destination deptime retime bustype noofseats
Busno,serviceno--------------->candidate key
Primary key:
A candidate key that is used by the database designer for unique identification of each row in
a table is known as primary key. A primary key consists of one or more attributes of the table.
Partial key:
A weak entity type normally has a partial key which is the set of attributes that can uniquely
identify weak entity that are related to the same owner entity.
EXPECTED OUTPUT
The entities in the “Roadway travels” is
1. Bus 2) Ticket 3) Passenger
Bus entity:
Attributes for the bus entity are
Bus schema:
Busno serviceno source destination deptime retime bustype noofseats
Ticket entity:
Attributes for the ticket entity are
Ticket schema:
Ticketno Joudate Joutime Source Destination Seatno Amount Catcard
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
Passenger entity:
Attributes for the Passenger entity are
Passenger schema:
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
Relate the entities appropriately. Apply cardinalities for each relationship. Identify strong
entities and weak entities (if any). Indicate the type of relationship (total/partial). Try to
incorporate generalization, aggregation, specialization etc wherever required.
MODEL INPUT
DEFINITIONS:
The cardinality ratio: - for a binary relationship specifies the maximum number of
relationships that an entity can participate in.
Weak and strong entity: - an entity set may not have sufficient attributes to form a primary
key. Such an entity set is termed a weak entity set. An entity set that has primary key is
termed a strong entity set.
Total participation:-
Ex: - if a travel agency states that every passenger must make reservation then every
passenger travels in bus. Than a passengers entity can exist only if it participates in atleast
one travels relationship instances. Thus the participation of passenger in travel is called total
participation meaning that every entity in the “total set” passenger entities must be related to
bus via travels relationship.
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
Specialization: in the process of identifying subsets of an entity set (the super set) that share
some distinguishing characteristics. This entity type is called the super class of the
specialization.
EXPECTED OUTPUT
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
Generalization:
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
Aggregation
Specialization:
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
2.Relational Model
Represent all entities (strong, week) in tabular fashion. Represent relationships in a tabular
fashion. There are different ways of representing as tables based on the cardinality. Represent
attributes as columns in the tables or as tables based on the requirement. Different types of
attributes (composite, multivalued and derived).
MODEL INPUT
Definitions:
Composite attributes: can be divided into smaller sub parts which represent more basic
attributes with independent meaning.
Multivalued attributes: for ex the attribute in the Bus entity Bustype can have different types of
buses according that the Bustype attribute contains the values as Garuda, Luxury, Express, and
Ordinary. This type of attribute is called multivalued attribute and may have lower and upper bounds
to constrain the number of values allowed for each individual entity.
Derived attributes:
In some cases, two or more attribute values are related. With the help of one attribute we get the value
of another attribute. Age and DOB attributes. With the DOB we get the age of the person to the
current date.
EXPECTED OUTPUT
Entity sets to tables:
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
Rserves(pnrno:numeric,joudate:date,noofseats:int(4),address:varchar(50),contact_no:numeric(10),stat
us:char(3))
Cancels(pnrno:numeric,joudate:date,noofseats:int(4),address:varchar(50),contact_no:numeric(10),stat
us:char(3))
TABLES:
Reserves:
Cancels:
Pnrno Joudate Noofseats Address Contact_no Status
1001 2010-8-5 5 5-4,srpt 9492506282 Yes
1002 2010-8-5 2 6-8,hyd 9949060540 No
1003 2010-8-15 2 h/7,vij 9704054050 Yes
1004 2010-8-18 5 8-9,hyd 9704613151 Yes
1005 2010-8-6 4 9-11,hyd 9848354941 Yes
Bus:
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
Ap8830 3239 Hyd Vij 9:00:00 22:30:00 Metro 45
Ticket:
Ticketno Joudate Joutime Source Destination Seatno Amount Catcard
1111 2010-8-5 9:00:00 Srpt Hyd 5 96 No
2222 2010-8-5 10:00:15 Srpt Hyd 10 88 Yes
3333 2010-8-15 9:00:00 Hyd Srpt 15 88 Yes
4444 2010-8-18 9:30:00 Hyd Srpt 20 96 No
5555 2010-8-6 9:00:00 Hyd Vij 18 172 Yes
Passenger:
Pnrno pname age sex ticketno address phno Catno
1001 Subbu 31 M 1111 5-4,srpt 9492506282 Cap5112
1002 Achaith 22 M 2222 6-8,hyd 9949060540 Cap6900
1003 Padma 25 F 3333 h/7,vij 9704054050 Cap5772
1004 Ravi 23 M 4444 8-9,hyd 9704613151 Cap6132
1005 Satyam 42 F 5555 9-11,hyd 9848354941 Cap6732
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
3.Normalization
Database normalization is a technique for designing relational database tables to minimize
duplication of information and, in doing so , to safeguard the database against certain types of
logical or structural problems namely data anomalies.
MODEL INPUT
The normalization forms are:
1. First Normal Form: 1NF requires that the values in each column of a table are
atomic. By atomic we mean that there are no sets of values within a column.
2. Second Normal Form: where the 1NF deals with atomicity of data, the 2NF deals
with relationships between composite key columns and non-key columns. To achieve
2NF the tables should be in 1NF. The 2NF any non-key columns must depend on the
entire primary key. In case of a composite primary key, this means that non-key
column can’t depend on only part of the composite key.
3. Third Normal Form: 3NF requires that all columns depend directly on the primary
key. Tables violate the third normal form when one column depends an another
column, which in turn depends on the primary key(transitive dependency). One way
to identify transitive dependency is to look at your tables and see if any columns
would require updating if another column in the table was updated. If such a column
exists, it probably violates 3NF.
EXPECTED OUPUT
Pnrno pname age sex ticketno address phno Catno
1001 Subbu 31 M 1111 5-4,srpt 9492506282 Cap5112
1001 Subbu 31 M 1111 5-4,srpt 9848845985 Cap5112
1002 Achaith 22 M 2222 6-8,hyd 9949060540 Cap6900
1003 Padma 25 F 3333 h/7,vij 9704054050 Cap5772
1004 Ravi 23 M 4444 8-9,hyd 9704613151 Cap6132
1005 Satyam 42 F 5555 9-11,hyd 9848354941 Cap6732
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
The above relation is now in 1NF and the relation is 2NF as there are no partial functional
dependencies and the relation is also in 3NF as there are no transitive dependencies.
Bus:
In this relation the values in each column are atomic so it is already in 1NF.
In the Bus entity Busno+serviceno is the primary key.
There exists following partial dependencies.
Busno ---->Bustype,Noofseats
Serviceno---->Source,Dest
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
3601 Hyd Srpt
3555 Hyd Srpt
3239 Hyd Vij
The above relation is 2NF. And all columns directly depend on primary key. So there is no
transitive dependency and the relation is 3NF.
In this relation the values in each column are atomic so it is already in 1NF.
In the above relation there are no partial functional dependencies so the relation is in 2NF.
The ticket entity might face the following transitive dependency
Ticketno------->catcard
Catcard--------->amount
So the relation is in 3NF.
Put the catcard and amount attributes in a separate table. Then the relation should be in 3NF.
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
Catcard Amount
No 96
Yes 88
Yes 88
No 96
Yes 172
Finally all the tables are normalized and free from data redundancy, partial functional
dependencies and transitive dependencies.
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
4. Practicing DDL commands
Creation of tables for Roadway Travels:
Bus
mysql> create table bus555(busnovarchar(10),bustype varchar(10),primary key(bus
no));
Query OK, 0 rows affected (0.17 sec)
Ticket
mysql> create table ticket555(tic_nonumeric(10),joudatedate,source varchar(10)
,dest varchar(10),deptimetime,reatimetime,busnumber varchar(10),primary key(ti
c_no));
Query OK, 0 rows affected (0.08 sec)
mysql> alter table ticket555 add constraint tic_fk foreign key(busnumber) refere
nces bus555(busno);
Query OK, 0 rows affected (0.16 sec)
Records: 0 Duplicates: 0 Warnings: 0
Passenger
mysql> create table passenger(pnrno numeric(10),ticnumber numeric(10),pnamevarc
har(15),age int(4),sex char(10),ppno varchar(15),primary key(pnrno));
Query OK, 0 rows affected (0.06 sec)
mysql> alter table passenger add constraint pas_fk foreign key(ticnumber) refere
nces ticket555(tic_no);
Query OK, 0 rows affected (0.14 sec)
Records: 0 Duplicates: 0 Warnings: 0
Reserve
mysql> alter table reserve add constraint res_fk foreign key(pnrnumber) referenc
es passenger(pnrno);
Query OK, 0 rows affected (0.17 sec)
Records: 0 Duplicates: 0 Warnings: 0
Cancel
mysql> alter table cancel add constraint can_fk foreign key(pnrnumber) reference
s passenger(pnrno);
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
5. Practicing DML commands:
DML commands are used to for managing data within the schema objects.
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
Inserting values into reserve table:
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
| 1111 | 2010-08-05 | srpt | hyd | 09:00:05 | 19:15:00 | ap555 |
| 2222 | 2010-08-05 | srpt | hyd | 10:00:05 | 20:15:00 | ap501 |
| 3333 | 2010-08-15 | hyd | srpt | 09:00:05 | 20:15:00 | ap444 |
| 4444 | 2010-08-18 | hyd | srpt | 09:30:05 | 20:15:00 | ap891 |
| 5555 | 2010-08-08 | hyd | vij | 09:10:05 | 22:15:00 | ap8830 |
+--------+------------+--------+------+----------+----------+-----------+
5 rows in set (0.00 sec)set (0.00 sec)
mysql> select *from passenger;
+-------+-----------+---------+------+------+--------+
| pnrno | ticnumber | pname | age | sex | ppno |
+-------+-----------+---------+------+------+--------+
| 1001 | 1111 | subbu | 31 | m | pp555 |
| 1002 | 2222 | achaith | 22 | m | pp8830 |
| 1003 | 3333 | padma | 25 | f | pp333 |
| 1004 | 4444 | ravi | 23 | m | pp444 |
| 1005 | 5555 | nirma | 42 | f | pp666 |
+-------+-----------+---------+------+------+--------+
5 rows in set (0.03 sec)
mysql> select *from reserve;
+-----------+-----------+--------------------+------------+--------+
| pnrnumber | noofseats | address | phno | status |
+-----------+-----------+--------------------+------------+--------+
| 1001 | 10 | hno:5-4,srpt,nlg | 9492506282 | yes |
| 1001 | 5 | hno:5-4,srpt,nlg | 9492506282 | yes |
| 1002 | 5 | hno:15-4,lbngr,hyd | 9491653714 | yes |
| 1003 | 6 | hno:151-4,dsnr,hyd | 9704613151 | yes |
| 1004 | 8 | hno:11-4,dsnr,hyd | 9704613111 | yes |
| 1005 | 8 | hno:41-4,dsnr,hyd | 9989503111 | no |
| 1005 | 5 | hno:41-4,dsnr,hyd | 9989503111 | yes |
+-----------+-----------+--------------------+------------+--------+
7 rows in set (0.02 sec)
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
Data control language (DCL) is used to access the stored data. It is mainly used for revoke
and to grant the user the required access to a database. In the database, this language does not
have the feature of rollback.
DDL Commands
GRANT Command
REVOKE Command
It is employed to remove a privilege from a user. REVOKE helps the owner to cancel
previously granted permissions.
Syntax
REVOKE privilege_name on objectname from user;
Here,
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
privilege names are SELECT,UPDATE,DELETE,INSERT,ALTER,ALL
objectname is table name
user is the name of the user whose privileges are removing
Example
TCL commands can only use with DML commands like INSERT, DELETE and UPDATE
only.
These operations are automatically committed in the database that's why they cannot be used
while creating tables or dropping them.
o COMMIT
o ROLLBACK
o SAVEPOINT
a. Commit: Commit command is used to save all the transactions to the database.
Example:
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
b. Rollback: Rollback command is used to undo transactions that have not already been
saved to the database.
Example:
c. SAVEPOINT: It is used to roll the transaction back to a certain point without rolling back
the entire transaction.
Syntax:
SAVEPOINT SAVEPOINT_NAME;
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
7. Implementing Integrity Constraints (Domain, Entity and Referential
Constraints)
Domain Integrity Constraint:
A domain constraint is a set of rules that restricts the kind of attributes or values a
column or relation can hold in the database table.
CREATE TABLE Students(Stu_ID int NOT NULL, Stu_Name varchar(255) NOT NULL, Class_Name
varchar(255) UNIQUE, Age int, PRIMARY KEY (Stu_ID));
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
8. Querying: In this week you are going to practice the queries (along with
sub queries) using ANY, ALL, IN, EXISTS, NOT EXISTS, UNION,
INTERSECT, Constraints etc.
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
4. Display the source and destination having journey time more than 10 hours.
5. Find the ticket numbers of passengers whose name starts with ‘A’ and ends with ‘H’.
mysql> select tic_no from ticket555 where tic_no=any (select ticnumber from passenger
where pname like 'a%h');
+--------+
| tic_no |
+--------+
| 1111 |
| 2222 |
+--------+
2 rows in set (0.02 sec)
mysql> select pname from passenger where age between 30 and 45;
+-------+
| pname |
+-------+
| subbu |
| nirma |
+-------+
2 rows in set (0.00 sec)
mysql> select all pname from passenger where pname like 'a%';
+---------+
| pname |
+---------+
| subbu |
| achaith |
+---------+
2 rows in set (0.00 sec)
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
mysql> select busno from bus555 where busnoin(select busnumber from ticket555 where
dayofweek(joudate)=1 or dayofweek(joudate)=4);
+--------+
| busno |
+--------+
| ap444 |
| ap8830 |
| ap891 |
+--------+
3 rows in set (0.00 sec)
10. Display the details of passengers who are traveling either in AC or NON_AC.
mysql> select pname,pnrno,age,sex from passenger where ticnumber in(select tic_no from
ticket555 where busnumber in(select busno from bus555 where bustype='ac' or
bustype='nonac'));
+---------+-------+------+------+
| pname | pnrno | age | sex |
+---------+-------+------+------+
| subbu| 1001 | 31 | m |
| achaith| 1002 | 22 | m |
| padma| 1003 | 25 | f |
| ravi| 1004 | 23 | m |
+---------+-------+------+------+
4 rows in set (0.00 sec)
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
9. Queries using Aggregate functions, GROUP BY, HAVING and Creation
and dropping of Views
MODEL INPUT
1. Write a query to display the information present in the Passenger and Cancellation tables.
mysql> select pnrno from passenger union select pnrnumber from cancel;
EXPECTED OUTPUT
+-------+
| pnrno |
+-------+
| 1001 |
| 1002 |
| 1003 |
| 1004 |
| 1005 |
+-------+
5 rows in set (0.00 sec)
MODEL INPUT
2. Write a query to display the busnumber with source and destination available in Roadway
Travels.
EXPECTED OUTPUT
+--------+--------+------+
| busno | source | dest |
+--------+--------+------+
| ap444 |hyd | srpt |
| ap501 |srpt | hyd |
| ap555 |srpt | hyd |
| ap8830 | hyd | vij |
| ap891 |hyd | srpt |
+--------+--------+------+
5 rows in set (0.00 sec)
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
MODEL INPUT
3. Display the number of days in a week on which AP444 bus is available.
EXPECTED OUTPUT
+----------------+
| count(joudate) |
+----------------+
| 2|
+----------------+
1 row in set (0.00 sec)
MODEL INPUT
4. Find the ticket numbers booked for each PNR_no using Group By clause.
mysql> select sum(noofseats) as reserved_seats,pnrnumber from reserve where status='yes'
group by pnrnumber;
EXPECTED OUTPUT
+----------------+-----------+
| reserved_seats | pnrnumber |
+----------------+-----------+
| 15 | 1001 |
| 5| 1002 |
| 6| 1003 |
| 8| 1004 |
| 5| 1005 |
+----------------+-----------+
5 rows in set (0.33 sec)
MODEL INPUT
5. Find the distinct PNR numbers that are present.
EXPECTED OUTPUT
+-----------+
| pnrnumber |
+-----------+
| 1001 |
| 1002 |
| 1003 |
| 1004 |
| 1005 |
+-----------+
5 rows in set (0.00 sec)
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
MODEL INPUT
6. Find the number of tickets booked for each bus with bustype where the number of seats is
greater than 1.
EXPECTED OUTPUT
+--------+---------+--------------+
| busno |bustype | booked_seats |
+--------+---------+--------------+
| ap555 | ac | 15 |
| ap501 | ac | 5|
| ap444 |nonac | 6|
| ap891 |nonac | 8|
| ap8830 | metro | 5|
+--------+---------+--------------+
5 rows in set (0.00 sec)
MODEL INPUT
7. Find the total number of cancelled seats.
EXPECTED OUTPUT
+-----------------+
| cancelled_seats |
+-----------------+
| 18 |
+-----------------+
1 row in set (0.00 sec)
MODEL INPUT
8. Write a query to count the number of tickets for the buses which traveled after the date
‘2010-08-06’.
mysql> select busno,bustype,sum(noofseats) as booked_seats from bus555,reserve,t
icket555,passenger where busno=busnumber and tic_no=ticnumber and pnrno=pnrnumbe
r and status='yes'andjoudate>'2010-8-6' group by tic_no having count(*)>=1;
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
EXPECTED OUTPUT
+--------+---------+--------------+
| busno |bustype | booked_seats |
+--------+---------+--------------+
| ap444 |nonac | 6|
| ap891 |nonac | 8|
| ap8830 | metro | 5|
+--------+---------+--------------+
3 rows in set (0.01 sec)
Creation of Views:
MODEL INPUT
mysql> create view takes1 as
-> select tic_no,pname from ticket555,passenger where tic_no=ticnumber;
Query OK, 0 rows affected (0.44 sec)
mysql> select tic_no from takes1;
EXPECTED OUTPUT
+--------+
| tic_no |
+--------+
| 1111 |
| 2222 |
| 3333 |
| 4444 |
| 5555 |
+--------+
5 rows in set (0.05 sec)
Dropping of Views:
MODEL INPUT
mysql> drop view takes1;
EXPECTED OUTPUT
Query OK, 0 rows affected (0.00 sec)
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
10. TRIGGERS
MODEL INPUT
mysql> create view takes1 as
-> select tic_no,pname from ticket555,passenger where tic_no=ticnumber;
Query OK, 0 rows affected (0.44 sec)
mysql> select tic_no from takes1;
EXPECTED OUTPUT
+--------+
| tic_no |
+--------+
| 1111 |
| 2222 |
| 3333 |
| 4444 |
| 5555 |
+--------+
5 rows in set (0.05 sec)
Dropping of Views:
MODEL INPUT
mysql> drop view takes1;
EXPECTED OUTPUT
Query OK, 0 rows affected (0.00 sec)
In this week you are going to work on the triggers. Creation of insert trigger, delete trigger, update
trigger. Practice triggers using above database.
DEFINITION
A Trigger is a named database object which defines some action that the database should
take when some databases related event occurs. Triggers are executed when you issues a data
manipulation command like INSERT, DELETE, UPDATE on a table for which the trigger has
been created. They are automatically executed and also transparent to the user. But for creating the
trigger the user must have the CREATE TRIGGER privilege. In this section we will describe you
about the syntax to create and drop the triggers and describe you some examples of how to use
them.
CREATE TRIGGER:
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
By using above statement we can create the new trigger. The trigger can associate only with the
table name and that must be refer to a permanent table.Trigger_timemeans trigger action time. It can
be BEFORE or AFTER. It is used to define that the trigger fires before or after the statement that
executed it. Trigger_eventspecifies the statement that executes the trigger. The trigger_event can be
anyoftheDMLStatement:INSERT,UPDATE,DELETE.
We can not have the two trigger for a given table, which have the same trigger action time and event.
For Instance : we cannot have two BEFORE INSERT triggers for same table. But we can have a
BEFORE INSERT and BEFORE UPDATE trigger for a same table.
Trigger_statementhave the statement that executes when the trigger fires but if you want to execute
multiple statement the you have to use the BEGIN…END compound statement.
We can refer the columns of the table that associated with trigger by using the OLD and
NEWkeyword.OLD.column_nameis used to refer the column of an existing row before it is deleted
or updated andNEW.column_nameis used to refer the column of a new row that is inserted
Update Trigger:
mysql> create trigger t1 before update on reserve
-> for each row
-> begin
-> ifnew.noofseats>30 then
-> setnew.noofseats=old.noofseats;
-> else
-> setnew.noofseats=new.noofseats;
-> end if;
-> end//
Query OK, 0 rows affected (0.03 sec)
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
| 1003 | 6 | hno:151-4,dsnr,hyd | 9704613151 | yes |
| 1004 | 12 | hno:11-4,dsnr,hyd | 9704613111 | yes |
| 1005 | 8 | hno:41-4,dsnr,hyd | 9989503111 | no |
| 1005 | 5 | hno:41-4,dsnr,hyd | 9989503111 | yes |
+-----------+-----------+--------------------+------------+--------+
7 rows in set (0.00 sec)
Insert Trigger:
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
6 rows in set (0.00 sec)
Delete Trigger:
mysql> delimiter //
mysql> create trigger rc before delete on cancel
-> for each row
-> begin
-> insert into reserve values(old.pnrnumber,old.noofseats,old.address,old.phno,old.status);
-> end//
Query OK, 0 rows affected (0.05 sec)
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
11. Procedures
In this session you are going to learn Creation of stored procedures, execution of procedure
and modification of procedures. Practice the procedures using above database.
MODEL INPUT
mysql> create procedure p2(p_age int)
-> begin
-> select pname,ticnumber,sex from passenger where age>p_age;
-> end//
EXPECTED OUTPUT
Query OK, 0 rows affected (0.00 sec)
MODEL INPUT
mysql> call p2(30)//
EXPECTED OUTPUT
+-------+-----------+------+
| pname | ticnumber | sex |
+-------+-----------+------+
| subbu | 1111 | m |
| nirma | 5555 | f |
+-------+-----------+------+
2 rows in set (0.00 sec)
MODEL INPUT
mysql> call p2(24)//
EXPECTED OUTPUT
+-------+-----------+------+
| pname | ticnumber | sex |
+-------+-----------+------+
| subbu | 1111 | m |
| padma | 3333 | f |
| nirma | 5555 | f |
+-------+-----------+------+
3 rows in set (0.00 sec)
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
MODEL INPUT
mysql> create procedure p3()
-> begin
-> select source,dest from ticket555 where hour(timediff(reatime,deptime))>1
0;
-> end//
EXPECTED OUTPUT
Query OK, 0 rows affected (0.02 sec)
MODEL INPUT
mysql> call p3()//
EXPECTED OUTPUT
+--------+------+
| source | dest |
+--------+------+
| hyd | srpt |
| hyd | vij |
+--------+------+
2 rows in set (0.00 sec)
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
12. Cursors
In this week you need to do the following: Declare the cursor that defines the result set.
Open the cursor to establish the result set. Fetch the data into local variables as needed from
the cursor, one row at a time. Close the cursor when done.
Cursors are used when theSQLSelect statement is expected to return more than one row.
Cursors are supported inside procedures and functions. Cursors must be declared and its
definition contains the query. The cursor must be defined in the DECLARE section of the
program. A cursor must be opened before processing and close after processing.
MODEL INPUT
mysql> create procedure mycur1(pa_id int)
-> begin
-> declarev_id int;
-> declarev_name varchar(30);
-> declare c1 cursor for select pnrno,pname from passenger where pnrno=pa_id;
-> open c1;
-> fetch c1 into v_id,v_name;
-> selectv_id,v_name;
-> close c1;
-> end//
Query OK, 0 rows affected (0.00 sec)
VR 23
Department of CSM DATABASE MANAGEMENT SYSTEMS LAB
mysql> call mycur1(1001)//
EXPECTED OUTPUT
+------+--------+
| v_id | v_name |
+------+--------+
| 1001 | subbu |
+------+--------+
1 row in set (0.01 sec)
MODEL INPUT
mysql> create procedure mycur5(ti_id int)
-> begin
-> declare x_no int;
-> declare x_srcvarchar(30);
-> declare x_dstvarchar(30);
-> declare c2 cursor for select tic_no,source,dest from ticket555 where tic_
no=ti_id;
-> open c2;
-> fetch c2 into x_no,x_src,x_dst;
-> select x_no,x_src,x_dst;
-> close c2;
-> end//
Query OK, 0 rows affected (0.00 sec)
EXPECTED OUTPUT
+------+-------+-------+
| x_no | x_src | x_dst |
+------+-------+-------+
| 1111 | srpt |hyd |
+------+-------+-------+
1 row in set (0.00 sec)
Query OK, 0 rows affected (0.01 sec)
VR 23