oracle中一张表的a字段加b字段的值放到c字段怎么写?

2025-03-06 21:35:08
推荐回答(2个)
回答1:

Update tableb set c=(select a||b from tablea where fid=?)试一下吧

回答2:

udpate table set c=a+b