Database Modification
Insertion
insert into r values (V1, V2, ..., Vn)insert into r select attributes from s where PUpdation
update r set attribute=new_value where Pupdate instructor
set salary = case
when salary <= 100000 then salary * 1.05
else salary * 1.03
endDeletion
Last updated