sqlserver update join 多关联更新

由于程序bug,导致之前很多数据入库后信息不全,好在有基础信息表,可以通过基础信息表更新缺失字段信息

1、通过 inner join语法实现多关联更新

update a set a.name  = b.name
from product_detail a
inner join product_base_info b on a.id = b.id

2、也可以直接用where语句

update a set a.name = b.name
from product_detail a,product_base_info b
where a.id = b.id

  

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐