首页 > 数据库 > MySQL > 正文

mysql 10w级别的mysql数据插入

2024-07-24 13:03:08
字体:
来源:转载
供稿:网友
开始没想到,这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 左右。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表