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

MySQL与MSSQl使用While语句循环生成测试数据的代码

程序员文章站 2023-12-17 14:18:46
在mysql中,使用while语句循环与sql server中有所不同,代码测试通过。 mssql中使用while语句循环生成数据的方法: 示例代码: 复制代码 代码如下:...
在mysql中,使用while语句循环与sql server中有所不同,代码测试通过。

mssql中使用while语句循环生成数据的方法:

示例代码:
复制代码 代码如下:

declare @a int
set @a = 1
while @a<25
begin
insert into demotable (id,item1,item2) values (@a,"abc","123")
set @a = @a + 1
end

mysql中,使用while循环处理数据方法:需要新建为存储过程,直接调用执行存储过程。

示例代码:
复制代码 代码如下:

create definer=`root`@`localhost` procedure `newprocedure`()
begin
declare i int;
set i=1;
while i<100 do
insert into demotable (id,item1,item2) values (i,"测试试题","0");
set i = i + 1;
end while;
end;

上一篇:

下一篇: