高效update方案

--方案1:
如果有索引,先把索引删除后,再update,最后把索引重新创建一下
因为索引对update影响很大。

--方案2:
1.create table newA as select id,name,age+1 age from A;
2.drop table A;
3.rename newA to A

--方案3:
set autocommit 1000;
update table_name set age=age+1;

--方案4:
批量更新

原文地址:https://www.cnblogs.com/huangbiquan/p/7746795.html