案例:使用僞記錄,在eml表中若是更新員工的工資,要求使用觸發器 達到 工資只能增長不能下降

--案例:使用僞記錄,在eml表中若是更新員工的工資,要求使用觸發器 達到 工資只能增長不能下降 create or replace trigger update_emp before update on emp for each row begin   if (:new.sal < :old.sal) then       :new.sal := :old.sal;     end if; en
相關文章
相關標籤/搜索