mysql 批量插入300万条测试数据
# 1.建表#drop table if exists test_user;create table test_user(id int auto_increment,`name` varchar(50),gender tinyint,addr varchar(100),primary key (`id`))engine=InnoDB default charset=utf8;2.创建存储过程要点:
# 1.建表
#drop table if exists test_user;
create table test_user(
id int auto_increment,
`name` varchar(50),
gender tinyint,
addr varchar(100),
primary key (`id`)
)engine=InnoDB default charset=utf8;
2.创建存储过程
要点:使用start transaction开启事务
# 2.创建存储过程
#drop procedure if exists pro_test_user;
# 结束符号修改,默认;
delimiter $$
create procedure pro_test_user(in min int, in max int)
begin
declare i int default min;
# 异常处理
declare exit handler for sqlexception,sqlwarning,not found
begin
rollback;
end;
# 开启事务
start transaction;
while i <= max DO
insert into test_user(`name`,`gender`,`addr`) values(concat('name',i), 1, concat('省市区',i));
set i = i + 1;
end while;
# 事务提交
commit;
end$$
delimiter ;
3. 插入100W条测试数据,
亲测MYSQL5.7耗时60s上下
# 3.执行存过
call pro_test_user(1,3000000);
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
所有评论(0)