Create or Replace trigger TOP_DISCOUNT Before insert on PURCHASE For each row begin if (:new.CLIENTNO == 24535) then :new.AMOUNT = :new.AMOUNT * 0.85; end if; end;
总是报错 [Err] ORA-24344: success with compilation error
[Err] ORA-24344: success with compilation error
求解