开发PL/SQL子程序——触发器——行触发器
行触发器是指当执行dml操作时,没作用一行被触发的一次的触发器。
create table audit_emp_change( name varchar2(10),oldsal number(6,2),newsal number(6,2),time date); create or replace trigger tr_sal_change after update of sal on emp for each row declare v_temp int; begin select count(*) into v_temp from audit_emp_change where name=:old.ename; if v_temp=0 then insert into audit_emp_change values(:old.ename,:old.sal,:new.sal,sysdate); else update audit_emp_change set oldsal=:old.sal,newsal=:new.sal,time=sysdate where name=:old.ename; end if; end; /
建立触发器tr_sal_change 之后,当修改雇员工资时,会将每个雇员的工资变化全部写入到审计表audit_emp_change中;
update emp set sal=sal*1.1 where deptno=30; select * from audit_emp_change;
NAME OLDSAL NEWSAL TIME
---------- ---------------------- ---------------------- -------------------------
ALLEN 1600 1760 07-5月 -13
WARD 1250 1375 07-5月 -13
MARTIN 1250 1375 07-5月 -13
BLAKE 2850 3135 07-5月 -13
TURNER 1500 1650 07-5月 -13
JAMES 950 1045 07-5月 -13
6 rows selected
当执行update之前先删除tr_sec_change 语句触发器。否则无法更新;
posted on 2013-05-07 16:47 LinuxPanda 阅读(383) 评论(0) 编辑 收藏 举报