我有表刚刚说它Table1,它触发了在Table2的插入,所以来自Table1的数据将插入到Table2中。
问题是每次表 1 中的数据发生变化时,表 2 中来自先前触发器的数据也发生了变化。
我希望先前触发器中已经存在的数据仍然存在并且不会改变。
有什么解决办法吗?
这是我的代码:
create trigger trig_change on Table1
for insert
begin
insert into Table2
select * from table1
end