触发器如下:CREATE or REPLACE TRIGGER del_trgBEFORE UPDATE ON student FOR EACH ROWBEGIN UPDATE sc SET sc.学号=:new.学号 where sc.学号=:old.学号;end del_trg;