提示W(wǎng)arning: Trigger created with compilation errors?請問如何解決
?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
2016-07-06
你這里:?raise_application_error(-20002,'||:new.sal||' ?'||:old.sal||); ? 單引號用的有問題(3個引號),多了一個引號,去掉第一個引號