欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-12-05 20:44:28
solution 1:  修改1列 update student s, city c set s.city_name = c.name where s.ci...

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用一个表更新另一个表的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。