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);
以上這篇mysql用一個表更新另一個表的辦法就是分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持。