update a set
a.field1=b.field1,
a.field2=b.field2,
a.fieldn=b.fieldn
from TB t1 inner join TB2 t2
on t1.id=t2.id
where t2.id='100001'
有一个多字段更新。也就是将T2的值反写到T1,通过更新操作做的。为什么一直报
format sql error. target database is 'MS SQL Server' detail message is :
update's tableSource is null
这个有大佬能解释下吗?
相关分类