SQL Server中如何操作"如果一个字段为空,则将另一个表中的某字段赋值给他"

2024-12-01 09:49:32
推荐回答(1个)
回答(1):

update A set A.a = B.b
from B
where A.id = B.id
  and A.a is null;