mysql 10w级别的mysql数据插入
时间:2021-04-22 09:08:51|栏目:Mysql|点击: 次
开始没想到,这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 左右。
复制代码 代码如下:
-- 优化代码之前的
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 左右。