最近有用到mysql批量更新,使用最原始的批量update发现性能不好,将网上看到的总结一下一共有如下三种办法:
1.批量update,一条记录update一次,性能不好
update test_tbl set dr='2' where id=1;
2.replace into 或者insert into ...on duplicate key update
replace into test_tbl (id,dr) values (1,'2'),(2,'3'),...(x,'y');
或者使用
insert into test_tbl (id,dr) values mysql
3.建立临时表,先更新临时表,而后从临时表中update
create temporary table tmp(id int(4) primary key,dr varchar(50));
insert into tmp values
update test_tbl, tmp set test_tbl.dr=tmp.dr where test_tbl.id=tmp.id;
注意:这种方法须要用户有temporary 表的create 权限。
下面是上述方法update 100000条数据的性能测试结果:
逐条update
real
user
sys
replace into
real
user
sys
insert into on duplicate key update
real
user
sys
create temporary table and update:
real
user
sys
就测试结果来看,测试当时使用replace into性能较好。
replace into
replace into 操做本质是对重复的记录先delete 后insert,若是更新的字段不全会将缺失的字段置为缺省值
insert into 则是只update重复记录,不会改变其它字段。sql