select top 100 * from T_M_080204_080229_Mobile_Query_sub order by newId()
DECLARE @counter smallint
SET @counter = 1
create table #t1(id int)
WHILE @counter <= 20000
BEGIN
insert into #t1 SELECT cast(RAND()*3000000 as int)
SET NOCOUNT ON
SET @counter = @counter + 1
SET NOCOUNT OFF
END
GO