mysql用一个表更新另一个表的方法
时间:2021-01-16 12:32:50|栏目: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);
栏 目:Mysql
下一篇:mysql启动错误之mysql启动报1067错误解决方法
本文标题:mysql用一个表更新另一个表的方法
本文地址:http://www.codeinn.net/misctech/46293.html