当前位置: 代码迷 >> Sql Server >> UNION ALL,该如何解决
  详细解决方案

UNION ALL,该如何解决

热度:62   发布时间:2016-04-27 17:45:53.0
UNION ALL
通过
select     *   from   A
UNION       ALL  
select   *   from   B
查询后怎样将A,B两个表同时排序啊
而且要A表的数据排序完成后,在将B表排序啊。


------解决方案--------------------
select col1,col2,col3 from
(select 0 as sn,col1,col2,col3 from A
UNION ALL
select 1 as sn,col1,col2,col3 from B) t
order by sn,其它要排序的列