sqlserver 一个排序问题

当 应用select * into a from b order by b1,b2语句时,试图使a表中的物理顺序改变,是 不能够实现的

select * into 同时复制了b表的物理结构,所以a表中的顺序和b表中的顺序是一致的。

如果想改变a表中的查询排序需要

select * from b a order by b1,b2.

 

posted @ 2013-09-04 15:39  银杏叶儿  Views(147)  Comments(0Edit  收藏  举报