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;
行级的触发器代码中不能操作该表,包括select
是:=不是=:吧