萬盛學電腦網

 萬盛學電腦網 >> 數據庫 >> mysql教程 >> mysql用一個表更新另一個表的方法介紹

mysql用一個表更新另一個表的方法介紹

這篇文章詳細介紹了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);

copyright © 萬盛學電腦網 all rights reserved