oracle update语句怎么写

2025-06-23 00:15:20
推荐回答(2个)
回答1:

update 表名 set 列名1=需要要更新的新值, 列名2=需要要更新的新值,...... where 条件列名=值 如: update dbzx_db set yljje=r.yljje where jsfzh=.sfzh or sfzh=r.sfzh and yljje is null

回答2:

update 表名 set 字段名1 = 值1, 字段名2 = 值2;