mysql 一张表update另一张表

来源:互联网 发布:linux 查看登陆的用户 编辑:程序博客网 时间:2024/05/16 09:17

有三种方法:

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.namewhere a.id=b.id

Solution 3: 子查询

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