SqlServer 基于表关联进行更新SQL语法,格式如下:
update 要更新的表别名 set 更新列= 关联表列
from 表 别名
join 数据来源表 别名 on 条件
SQL例子:
update a set a.product_name = b.product_name
from product_table a
inner join product_info__table b on a.prod_id_info = b.id
越努力越进步-越开心越自信-越懒惰越迷茫-越焦虑越自卑
SqlServer 基于表关联进行更新SQL语法,格式如下:
update 要更新的表别名 set 更新列= 关联表列
from 表 别名
join 数据来源表 别名 on 条件
SQL例子:
update a set a.product_name = b.product_name
from product_table a
inner join product_info__table b on a.prod_id_info = b.id