Download as pdf or txt
Download as pdf or txt
You are on page 1of 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