oracle X表中的A字段的数据赋值到B字段

2024-12-04 22:50:11
推荐回答(2个)
回答1:

update x set b=a where b is null or b=''

最好是这样!因为B字段未必都是null

回答2:

update x set b=a where b is null