发布网友 发布时间:2023-09-25 14:16
共1个回答
热心网友 时间:2024-10-27 13:59
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;