mysql经过一张表更新另外一张表

 

在mysql中,经过一张表的列修改另外一张关联表中的内容:mysql

1:  修改1列sql

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

 

2:  修改多个列post

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

 

3: 采用子查询spa

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

 

REF:code

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

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

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

相关文章
相关标签/搜索