使用触发器实现:删除dept对应的部门编号后,emp中部门编号变空
create or replace
trigger tri_change
after/*before instead of */ delete /* or update..*/ on dept
for each row --行级触发
--定义变量在这里 declare。。
begin
update emp set deptno=''
where deptno=:old.deptno;
--:new.字段表示新的 :old表示原来的
end;