简单的循环插入数据
declare @count intset @count = 0while(@count<130)
begin insert into Prout values('02-998','1128297','Hydro Breeze Rain Wear Mens','MTL','LK')set @count = @count + 1end