oracle update触发器 更新某一字段时往另一张表insert相关数据的触发器

2024-12-05 17:37:28
推荐回答(1个)
回答1:

create or replace trigger test1
after update of id on test1
for each row
begin
insert into test2(name) values('now,you update test1.id ,and i can feel you !');
end;
纯手打,根据字段触发就是这样,您可以参考着写。