首页 > 其他 > 详细

触发器

时间:2018-05-24 10:14:08      阅读:223      评论:0      收藏:0      [点我收藏+]

CREATE OR REPLACE TRIGGER trg_quote_otherArea_to_list
before insert or delete or update of modify_date on tab_quote_other_area
for each row
declare
integrity_error exception;
errno integer;
errmsg char(200);
str varchar(2000);
begin

if inserting then
--取序列号
begin
IF :new.other_area_id is null or :new.other_area_id=0 THEN
select sequence_other_area.nextval INTO :new.other_area_id from dual;
END IF;
exception
when integrity_error then raise_application_error(errno, errmsg);
end;

if :new.other_area_site_code is not null then
insert into tab_quote_other_list
(guid,other_area_id ,use_site_code ,fee_type_code ,other_site_code ,modify_date)
select sys_guid(),:new.other_area_id,:new.use_site_code,:new.fee_type_code,
substr(other_area_site,
instr(other_area_site, ‘;‘, 1, rownum) + 1,
instr(other_area_site, ‘;‘, 1, rownum + 1) -
instr(other_area_site, ‘;‘, 1, rownum) - 1),sysdate
from (select :new.other_area_site_code as other_area_site from dual)
--正则表达式查找";"的个数
connect by rownum < length(regexp_replace(other_area_site, ‘[^;]‘,‘‘));
--函数替换(数据量小)translate(string,from_str,to_str),同时比较string和from_str
--字符串中的每个字符,存在不存在to_str字符,即从string中剔除掉
--connect by rownum < length(translate(other_area_site,‘;‘ || other_area_site,‘;‘));
end if;
elsif deleting then
if :old.other_area_site_code is not null then
delete from tab_quote_other_list where other_area_id = :old.other_area_id;
end if;
else
if nvl(:old.modify_date,to_date(‘1899-1-1 00:00:00‘, ‘yyyy-mm-dd hh24:mi:ss‘)) <>
nvl(:new.modify_date,to_date(‘1899-1-1 00:00:00‘, ‘yyyy-mm-dd hh24:mi:ss‘)) then

if :old.other_area_site_code is not null then
delete from tab_quote_other_list where other_area_id = :old.other_area_id;
end if;
if :new.other_area_site_code is not null then
insert into tab_quote_other_list
(guid,other_area_id ,use_site_code ,fee_type_code ,other_site_code ,modify_date)
select sys_guid(),:new.other_area_id,:new.use_site_code,:new.fee_type_code,
substr(other_area_site,
instr(other_area_site, ‘;‘, 1, rownum) + 1,
instr(other_area_site, ‘;‘, 1, rownum + 1) -
instr(other_area_site, ‘;‘, 1, rownum) - 1),
sysdate
from (select :new.other_area_site_code as other_area_site from dual)
connect by rownum < length(translate(other_area_site,‘;‘ || other_area_site,‘;‘));
end if;

end if;
end if;
end trg_quote_otherArea_to_list;

触发器

原文:https://www.cnblogs.com/yangpeng-jingjing/p/9081174.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!