1. SQL 小例
1 declare @i int 2 set @i=1 3 while @i<30 4 begin 5 insert into test (userid) values(@i) 6 set @i=@i+1 7 end