mysql中如何批量生成百万级数据
Posted 洗洗睡吧
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql中如何批量生成百万级数据相关的知识,希望对你有一定的参考价值。
# 准备 #1. 准备表 create table s1( id int, name varchar(20), gender char(6), email varchar(50), first_name char(10), last_name char(10) ); #2. 创建存储过程,实现批量插入记录 delimiter $$ #声明存储过程的结束符号为$$ create procedure auto_insert1() BEGIN declare i int default 1; while(i<3000000)do insert into s1 values(i,‘xboyww‘,‘man‘,concat(‘xboyww‘,i,‘@qq‘),concat(‘王‘,i),concat(‘文‘,i)); set i=i+1; end while; END$$ #$$结束 delimiter ; #重新声明分号为结束符号 #3. 查看存储过程 show create procedure auto_insert1G #4. 调用存储过程 call auto_insert1();
以上是关于mysql中如何批量生成百万级数据的主要内容,如果未能解决你的问题,请参考以下文章