mysql 批量插入数据存储过程

create procedure pFastCreateNums (cnt int unsigned)
begin
declare s int unsigned default 1;
truncate table nums;
insert into nums select s;
while s2 <= cnt do
begin
insert into nums select a+s from nums;
set s = s
2;
end;
end while;
end;

原文地址:https://www.cnblogs.com/gaoquan/p/5823412.html