You are on page 1of 2

PRACTICAL NO. 5 EXECUTE DML COMMANDS IN SQL.

XIII. PRACTICAL BASED QUESTIONS


1.Create a table EMPLOYEE with following schema:
2.Insert multiple rows in above table Emp using single INSERT command of SQL .

b.Delete Emp where e_name=’SHREYAS’;


c. Update set salary =50000 where dept_no=2136;

d. Select * from EMPLOYEE where salary>=25000 and <=60000

You might also like