Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
create or replace trigger modifyemployee
before update of address on employee
for each row
begin
:new.modifydate := sysdate;
end;
/
Trigger created.
SQL> update employee set address = 'xyz' where empnum = 10201;
1 row updated.
SQL> select address,modifydate from employee where empnum = 10201;
ADDRESS MODIFYDAT
---------- ---------
xyz 29-OCT-09
1 row selected.
before insert or update ...