oracle怎么建立一个触发器在表插入数据的时候更新表的另一个字段

日期:2017-12-16 11:18:56 人气:1

oracle怎么建立一个触发器在表插入数据的时候更新表的另一个字段

create or replace trigger trg_updateColumnbefore insert on z_t_asset_card--表名for each rowbegin--当不为null时,准备对字段进行替换 if :new.BARCODE is not null then :new.ASSETCARDNO:=:new.barcode; end if; end;
    A+
热门评论