--触发器
create or replace TRIGGER trigger_exception
after insert
ON t_ykt_grjyjl
FOR EACH ROW
declare --这里是关键的地方,在变量申明的地方,指定自定义事务处理。
pragma autonomous_transaction;
begin
--过滤时间段
if (:NEW.JYSJ <'07:00' or :NEW.JYSJ>'09:00') and (:NEW.JYSJ<'11:30' or :NEW.JYSJ>'13:30') and (:NEW.JYSJ<'17:00' or :NEW.JYSJ>'19:00') then
--调用存储过程
ykt_exception(:NEW.JYRQ,:NEW.JYSJ,:NEW.KH,:NEW.WID,:NEW.SFRZH,:NEW.JYJE);
end if;
end;
create or replace TRIGGER trigger_exception
after insert
ON t_ykt_grjyjl
FOR EACH ROW
declare --这里是关键的地方,在变量申明的地方,指定自定义事务处理。
pragma autonomous_transaction;
begin
--过滤时间段
if (:NEW.JYSJ <'07:00' or :NEW.JYSJ>'09:00') and (:NEW.JYSJ<'11:30' or :NEW.JYSJ>'13:30') and (:NEW.JYSJ<'17:00' or :NEW.JYSJ>'19:00') then
--调用存储过程
ykt_exception(:NEW.JYRQ,:NEW.JYSJ,:NEW.KH,:NEW.WID,:NEW.SFRZH,:NEW.JYJE);
end if;
end;