简单的循环插入数据

简单的循环插入数据

declare @count int
set @count = 0
while(@count<130)

begin                 
insert into Prout values('02-998','1128297','Hydro Breeze Rain Wear Mens','MTL','LK')
set @count = @count + 1
end

原文地址:https://www.cnblogs.com/yzenet/p/2434807.html