Create a trigger which will work before deletion in employee table and create a duplicate copy of the record in another table employee_backup.
Create a trigger which will work before deletion in employee table and create a duplicate copy of the record in …
Share
create table employee(
employee_no int,
employee_name varchar(40),
job varchar(40),
salary int
………….
DOWNLOAD ANSWER :