当前位置:Gxlcms > 数据库问题 > [SQL Server] 只更新表中某一部分数据的实现方法

[SQL Server] 只更新表中某一部分数据的实现方法

时间:2021-07-01 10:21:17 帮助过:33人阅读

技术图片

 

 https://blog.csdn.net/dietime1943/article/details/72742651

错误的做法:

update 表1

set 表1.字段=

(SELECT
表2.字段
FROM
表2 where 表2.ID = 表1.ID)

后面这种情况其实可以使用left join的方式来实现嘛

[SQL Server] 只更新表中某一部分数据的实现方法

标签:article   src   数据   mamicode   实现   time   code   from   get   

人气教程排行