当前位置:Gxlcms > mysql > mysql10w级别的mysql数据插入_MySQL

mysql10w级别的mysql数据插入_MySQL

时间:2021-07-01 10:21:17 帮助过:34人阅读

bitsCN.com 开始没想到,这10w的数据一个号码一个号码的插入半个小时才2w。后来改进一条SQL批量插入

-- 优化代码之前的
insert into table(mobile) values (138000000);
insert into table(mobile) values (138000000);
insert into table(mobile) values (138000000);
……

-- 优化之后的
insert into table(mobile) values (138000000), (138000000), (138000000);……

-- 优化之后插入12w数据包括php做数据处理,开销才 6s 左右。
bitsCN.com

人气教程排行