问一个sql更新语句的执行问题

2024-12-01 01:29:16
推荐回答(2个)
回答(1):

update a set col1=b.col2 from a,b where a.sfz=b.sfz;

回答(2):

update a set a.col1 in (select b.col2 from b where a.sfz=b.sfz)
应该是这样的不吧!