当前位置:主页 > mysql教程 > mysql用一个表更新另一个表的方法

mysql用一个表更新另一个表(两表更新)方法

发布:2020-03-09 21:41:14 171


为网友们分享了MySQL相关的编程文章,网友步涵映根据主题投稿了本篇教程内容,涉及到mysql、表更新、mysql用一个表更新另一个表的方法相关内容,已被594网友关注,涉猎到的知识点内容可以在下方电子书获得。

mysql用一个表更新另一个表的方法

Solution 1:  修改1列

update student s, city c
set s.city_name = c.name
where s.city_code = c.code;

Solution 2:  修改多个列

update  a,  b

set a.title=b.title, a.name=b.name
where a.id=b.id

Solution 3: 采用子查询

update student s set city_name = (select name from city where code = s.city_code);

以上这篇mysql用一个表更新另一个表的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持码农之家。


参考资料

相关文章

网友讨论