欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mysql 动态生成测试数据

程序员文章站 2023-11-29 09:08:16
一、问题 要生成两类数据: a类:两位的 01 02 03 。。。09 10 11。。。19 20 21 。。。98 99 另一类b类:三位的 100 101 102 。。...
一、问题
要生成两类数据:
a类:两位的 01 02 03 。。。09 10 11。。。19 20 21 。。。98 99
另一类b类:三位的 100 101 102 。。。110 111 112。。。998 999
二、解决办法
1、建表
复制代码 代码如下:

create table `test`.`ta` (
`a` varchar(45) not null
) engine=innodb default charset=utf8;

2、创建存储过程
复制代码 代码如下:

delimiter $$
drop procedure if exists `test`.`proc_tp` $$
create definer=`root`@`localhost` procedure `proc_tp`(in prex int,in max int)
begin
declare i int default 0;
declare s varchar(500);
while (i<10 and prex<max) do
select concat(prex,i) into s;
insert into ta (a) values (s);
set i=i+1;
if(i=10 and prex<max) then
set prex=prex+1;
set i=0;
end if;
end while ;
end $$
delimiter ;

3、分别调用执行存储过程
call proc_tp(0,10) 创建a类数据
call proc_tp(10,100) 创建b类数据
4、查询结果
select * from ta t order by cast(a as signed) asc;