存储过程简单使用,批量插入10万条数据,供以后查阅。
1、新增测试表
CREATE TABLE `test` (
`id` varchar(11) DEFAULT NULL,
`username` varchar(255) DEFAULT NULL,
`createdate` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2、新增存储结构
delimiter;
create procedure pro()
begin
declare i int default 0;
while i<100000 do
insert into test values(i,'aa','bbb');
set i = i + 1;
end while;
end;
delimiter;
3、执行存储结构
call pro()
4、查询数据结果
5、删除存储结构
drop procedure pro