db2 如何使用触发器检索列的旧值?

bgibtngc  于 2022-11-07  发布在  DB2
关注(0)|答案(1)|浏览(199)

如何检索列的旧存储值,就像它被更新为空值一样?然后,如何使用触发器更新旧值本身

zqry0prt

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 @

也许是你正在寻找的

相关问题