在oracle 为什么不能在行级触发器中修改变异表
发布网友
发布时间:2022-05-05 18:55
我来回答
共2个回答
热心网友
时间:2022-05-05 20:24
前处发试试追问create or replace trigger update_emp
after update on emp
for each row
begin
update emp set ename='aa' where empno=7788;
end;
--测试
update emp set ename='aa' where empno=7788;
追答不是说让你前触发吗
before update on emp