zhaoping55
2016-07-06 17:25
create or replace trigger c2
2 before update
3 on emp1
4 for each row
5 begin
6 if :new.sal < :old.sal then
7 raise_application_error(-20002,'||:new.sal||' '||:old.sal||);
8 end if;
9 end;
10 /
Warning: Trigger created with compilation errors
你这里: raise_application_error(-20002,'||:new.sal||' '||:old.sal||); 单引号用的有问题(3个引号),多了一个引号,去掉第一个引号
Oracle触发器
36895 学习 · 49 问题
相似问题