Preserving ORDER BY in SELECT INTO

I know this is a bit old, but I needed to do something similar. I wanted to insert the contents of one table into another, but in a random order. I found that I could do this by using select top n and order by newid(). Without the ‘top n’, order was not preserved and the second table had rows in the same order as the first. However, with ‘top n’, the order (random in my case) was preserved. I used a value of ‘n’ that was greater than the number of rows. So my query was along the lines of:

insert Table2 (T2Col1, T2Col2)
  select top 10000 T1Col1, T1Col2
  from Table1
  order by newid()

Leave a Comment