0% found this document useful (0 votes)
18 views3 pages

Exp - 1 DBMS

The document describes a database experiment with two parts. The first part involves creating a table of CSE student details and querying for records from TPP sections or deleting F grades. The second part involves creating an employee table, inserting sample records, querying employees by join date, and adding an address column while removing last name.

Uploaded by

Sushmit Singh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views3 pages

Exp - 1 DBMS

The document describes a database experiment with two parts. The first part involves creating a table of CSE student details and querying for records from TPP sections or deleting F grades. The second part involves creating an employee table, inserting sample records, querying employees by join date, and adding an address column while removing last name.

Uploaded by

Sushmit Singh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

DEPARTMENT OF

COMPUTER SCIENCE & ENGINEERING

Experiment1.1
Student Name: Sushmit Singh UID: 22BCS17177
Branch: BE - CSE Section/Group: 814 - B
Semester: 4th Date of Performance: 8/02/24
Subject Name: DBMS Subject Code: 22CSH-254

Aim: (I) Create a table that includes all the details of CSE students.
a) Write a code to display the record of students who belong to TPP sections.
b) Delete the record of students who score F grade.
(II) Suppose we want to create a table called employee with following columns:
Employee_id: integer
First_name: varchar(50)
Last_name: varchar(50)
Email:varchar(100), unique
Hire_date: date
a) Enter minimum 5 records in the table, display the name of employee with same
date of joining.
b) Add a new column as employee_address and delete the column last name.

DBMS script and output:


Create a table that includes all the details of CSE students.
DEPARTMENT OF
COMPUTER SCIENCE & ENGINEERING

Delete the record of students who score F grade.


DEPARTMENT OF
COMPUTER SCIENCE & ENGINEERING

Enter minimum 5 records in the table, display the name of employee with same
date of joining.

Add a new column as employee_address and delete the column last name.

You might also like