Home  >  Article  >  Database  >  mysql 10w级别的mysql数据插入

mysql 10w级别的mysql数据插入

WBOY
WBOYOriginal
2016-06-07 18:05:23899browse

几天前做了一个短信发送东东,一次性要插入10w以上的手机号码。我的个天

开始没想到,这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 左右。
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn