mysql用一個表更新另外一個表

Solution 1:  修改1列mysql

update student s, city c
   set s.city_name = c.name
 where s.city_code = c.code;sql

Solution 2:  修改多個列code

update  a,  b ci

set a.title=b.title, a.name=b.name
where a.id=b.idget

Solution 3: 採用子查詢it

update student s set city_name = (select name from city where code = s.city_code);io

 

REF:table

http://dba.stackexchange.com/questions/119621/how-to-update-10-million-rows-in-mysql-single-table-as-fast-as-possibleast

http://stackoverflow.com/questions/6393763/fast-cross-table-update-with-mysqldate

http://stackoverflow.com/questions/11709043/mysql-update-column-with-value-from-another-table

相關文章
相關標籤/搜索