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用一个表更新另一个表的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
您可能感兴趣的文章:- Mysql update多表联合更新的方法小结
- mysql实现查询数据并根据条件更新到另一张表的方法示例
- 如何使用MySQL一个表中的字段更新另一个表中字段
- Mysql 根据一个表数据更新另一个表的某些字段(sql语句)
- MySQL数据库同时查询更新同一张表的方法
- 仅用一句SQL更新整张表的涨跌幅、涨跌率的解决方案