在a表上建触发器 CREATE OR REPLACE TRIGGER TRG_abefore insert on a for each rowdeclare begin insert into b(idb, ida) values(null, :new.ida);end;/其中b.idb应该是可以为空的