Record Work-Dbms-2024
Record Work-Dbms-2024
Activity-1
Aim:- To Create a Table in Open Office Base and Write the SQL
statements for the Queries .
Procedure :-
Step 2-Enter Field name, Field Type and Field Properties and set
primary key.
SQL Statements:
Output:
AIM
Procedure :-
Step 2-Enter Field name, Field Type and Field Properties and set
primary key.
SQL Statements:
(i)Select * from “EMPLOYEE” where
“DESIGN”=’DOCTOR’;
(iiI Select “EMPID”, “EMPNAME”,”DESIGN”, “SALARY”/2
from “EMPLOYEE”;
(iii) Insert into “EMPLOYEE”
values(‘E1006’,’KAPIL’,’TEACHER’,30000);
(iv) Update “EMPLOYEE” set “DESIGN” = ‘ARTIST’ where
“EMPNAME” =’NEERAJ’;
(v) Delete from “EMPLOYEE” where “DESIGN”=’DOCTOR’;
(vi) EMPID
(vii)Select * from “EMPLOYEE” order by “EMPNAME”
DESC;
Output:
A table in Open office Base has been created and executed
all the queries.
ACTIVITY 3
AIM: Create a FORM for the EMPLOYEE TABLE created.
Output-
A form has been created for the table.
ACTIVITY 4
AIM: Design a REPORT to display the data from
EMPLOYEE TABLE created.
Output-
A report has been generated for the table.
Note:-