select * into table2 
from (select top 100 percent * from table1 order by id) a 
还是不行哦,table2 和table1的数据排序还是一样,
table1原来的排序是很乱的。