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

更新时间:2021-05-16    来源:mysql教程    手机版     字体:

【www.bbyears.com--mysql教程】

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

本文来源:http://www.bbyears.com/shujuku/117882.html

猜你感兴趣

热门标签

更多>>

本类排行