一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

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

时间:2017-01-05 编辑:简简单单 来源:一聚教程网

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);

热门栏目