我已经在 Stack 上阅读了一些问题/答案,但找不到任何我需要的东西。
假设我有下表:
col0 col1 col2 col3 col4
---- ---- ---- ---- ----
8 1 a b c
8 2 a b c
8 3 a b c
9 1 a b c
9 2 a b c
我的软件可以:
INSERT INTO testtable ([col0],[col1],[col2],[col3],[col4])
VALUES ('8','4','a','b','c')
如何创建像这样的伪代码触发器:
On insert when col1 = '4'
delete existing rows where col0 is the same (8 in this case)
** except for the new row I've just added **