Dbms Lab Manual
Dbms Lab Manual
Dbms Lab Manual
PARUL UNIVERSITY
FACULTY OF ENGINEERING AND TECHNOLOGY
BACHELOR OF TECHNOLOGY
LABORATORY MANUAL
Jenil shah visaria - 2303051051010
CERTIFICATE
PRACTICAL-1
IM:
A
1-What is DBMS?
2-What are the applications of DBMS?
3-Create Student Details with Microsoft Excel.
1 -What is DBMS?
A Database Management System(DBMS) is a software system that is
designed to manage and organize data in a structured manner. It allows
users to create, modify, and query a database, as well as manage the
security and access controls for that database.
PRACTICAL-2
Table 1 - Employee
Table 2 - Work
Table 3 - Company
Table 4 - Manager
Table 5 - Sailors
( '58','Rusty','10','35.0'),
('64','Horatio','7','35.0'),
('71','Zobra','10','16.0'),
('74','Horatio','9','35.0'),
('85','Art','3','25.5'),
('95','Bob','3','63.5');
SELECT * FROM Sailors;
Table 6 - Reserves
( '22','104','10-jul-98'),
('31','102','11-oct-98'),
('31','103','11-jun-98'),
('31','104','11-dec-98'),
('64','101','9-may-98'),
('64','102','9-aug-98'),
('74','103','9-aug-98');
SELECT*FROM Reserves;
Table 7 - Boats
( '104','Marine','Red');
SELECT*FROM Boats;
Table 8 - Client
Table 9 - Product
Table 10 - Salesman
Table 11 - Salesorder
Table 12 - Deposit
Table 13 - Borrow
( '375','Pramod','VIRAR','8000.00'),
('481','Kranti','NEHRU PLACE','3000.00');
SELECT*FROM Borrow;
Table 14 - Branch
Table 15 - Customers