Bootstrap

PL/SQL触发器

触发器创建

create [or replace] trigger 名字
before/after 触发事件 [of 字段名] 
on 表名
[for each row]--行触发器选择
[when 条件]
declare
...
begin
...
exception
...
end [触发器名]
在begin里面编程可能用到的变量
:new.字段和:old.字段可以获取字段更新前后的值
操作加ing,如果当前为这个操作则这个变量为true
如进行插入操作的时候inserting为true,updating等为false

为employees表创建一个名为“trg_emp_dml_row”的触发器,当插入新员工的时候显示新员工的id和name;当更新工资时,显示前后工资。当删除员工时,显示被删除员工的id和name;

create or replace trigger trg_emp_dml_row
before insert or update of salary or delete on employees
for each row
begin
	if inserting then
		dbms_output.put_line(:new.id||' '||:new.name);
	elsif updating then 
		dbms_output.put_line(:old.salary||'   '||:new.salary);
	else
		dbms_output.put_line(:old.id||'  '||:old.name);
	end if;
end[trg_emp_dml_row];
;