zoukankan      html  css  js  c++  java
  • 触发器

    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;

  • 相关阅读:
    [XJOI]noip43 T2多人背包
    Codeforces Round #198 (Div. 2)E题解
    [XJOI]noip40 T2统计方案
    Codeforces Round #198 (Div. 2)C,D题解
    Codeforces Round #198 (Div. 2)A,B题解
    9.19[XJOI] NOIP训练37
    9.18[XJOI] NOIP训练36
    kmp算法详解
    [模板系列] AC自动姬
    luogu1967[NOIP2013D1T3] 货车运输 (最大生成树+LCA)
  • 原文地址:https://www.cnblogs.com/yangpeng-jingjing/p/9081174.html
Copyright © 2011-2022 走看看