日期:2014-05-01 浏览次数:20355 次
declare @i int set @i=1 while @i<30 begin insert into test (userid) values(@i) set @i=@i+1 end