求SQL语句,将A表中的N个字段插入到B表中,A表和B表有关联字段(值相同的字段)

2024-11-30 18:29:34
推荐回答(1个)
回答1:

update B set b.col2=a.col2, b.col3=a.col3
from A
where b.col1=a.col1