码迷,mamicode.com
首页 > 数据库 > 详细

mysql用一个表更新另一个表

时间:2015-01-18 18:28:29      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:

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用一个表更新另一个表

标签:

原文地址:http://www.cnblogs.com/emanlee/p/4231976.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!