mysql 批量更新数据的实例分析

发布时间:2020-02-24编辑:脚本学堂
本文介绍下,在mysql数据库中进行批量数据更新的几个例子,并做了对比分析,有兴趣的朋友可以参考下。

本节主要内容:
mysql批量更新数据

在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  (1,'2'),(2,'3'),...(x,'y') on duplicate key update dr=values(dr);

3,创建临时表,先更新临时表,然后从临时表中update
 

复制代码 代码示例:
create temporary table tmp(id int(4) primary key,dr varchar(50));
insert into tmp values  (0,'gone'), (1,'xx'),...(m,'yy');
update test_tbl, tmp set test_tbl.dr=tmp.dr where test_tbl.id=tmp.id;

注意:这种方法需要用户有temporary 表的create 权限。

update 100000条数据的性能测试结果:
 

逐条update
real    0m15.557s
user    0m1.684s
sys    0m1.372s

replace into
real    0m1.394s
user    0m0.060s
sys    0m0.012s

insert into on duplicate key update
real    0m1.474s
user    0m0.052s
sys    0m0.008s

create temporary table and update:
real    0m0.643s
user    0m0.064s
sys    0m0.004s

根据测试结果分析:
测试当时使用replace into性能较好。
replace into  和insert into on duplicate key update的不同在于:
replace into 操作本质是对重复的记录先delete 后insert,如果更新的字段不全会将缺失的字段置为缺省值
insert into 则是只update重复记录,不会改变其它字段。