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

1:  修改1列

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

 

2:  修改多个列

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

 

3: 采用子查询

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

 

REF:

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

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

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

1:  修改1列

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

 

2:  修改多个列

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

 

3: 采用子查询

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

 

REF:

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

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

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

相关文章:

  • 2021-10-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-21
  • 2021-10-20
猜你喜欢
  • 2021-10-20
  • 2021-07-28
  • 2021-10-20
  • 2022-12-23
  • 2021-10-20
  • 2021-06-23
  • 2021-06-03
相关资源
相似解决方案