mySQL:两表更新(用一个表更新另一个表)的SQL语句
·
概述:用一个表中的字段去更新另外一个表中的字段, MySQL 中有相应的 update 语句来支持,不过这个 update 语法有些特殊。看一个例子就明白了。
方法一:
update people s set city_name = (select name from city where code = s.city_code);
结果:
结论: 1,代码对应的城市更新,对应错误的更正;
2,city表中没有的城市,在people表里全被更新为null。
方法二:
update people s, city c set s.city_name = c.name
where s.city_code = c.code;
结果:
结论:1,代码对应的城市更新,对应错误的更正;
2,city表中没有的城市,在people表里保持原数据,不会被清空。
方法三:
UPDATE people LEFT JOIN city ON people.city_code=city.`code` SET people.city_name=city.`name`;
结果:
结论:和方法一样.
总结:
其实update就可以分为外连接和内连接,使用之前一定要想清楚,否则会导致主表的数据被清除。方法二是更保险的方式。
------------------------------------------------------------------------------------------------------------------------------------------
SqlServer的略有不同:
参考文章:
https://blog.csdn.net/z69183787/article/details/9278683
sql:
UPDATE VehBasicInfo SET VehBasicInfo.ProductDate=vehProductDate.ProductDate
from VehBasicInfo,vehProductDate
where VehBasicInfo.Vin=vehProductDate.VIN
更多推荐
已为社区贡献2条内容
所有评论(0)