如何检索列的旧存储值,就像它被更新为空值一样?然后,如何使用触发器更新旧值本身
zqry0prt1#
不清楚您要做什么,但这里有一个解释。假设表如下:
db2 "create table t (x int not null primary key, y int)"
触发器:
create or replace trigger <trigname> before update of y on t referencing new as n old as o for each row when (n.y is null) set n.y = o.y @
也许是你正在寻找的
1条答案
按热度按时间zqry0prt1#
不清楚您要做什么,但这里有一个解释。假设表如下:
触发器:
也许是你正在寻找的