Apply a trigger on relation client (sno, fname, lname, eid, and password) on attributes fname and password after/before delete or update these columns. The trigger should insert the old or deleted values from both these columns into a new table client1.
Share
create table client(sno number(10),
fname varchar(20),
eid number(10),
passwrd varchar(20)); . . . . . . . . . . . .
TAP ON THE ATTACHMENT BUTTON FOR FULL ANSWER: