当前位置: 代码迷 >> Sql Server >> [请问]union或者union all之后的结果如何进行排序并且按照rowid查找
  详细解决方案

[请问]union或者union all之后的结果如何进行排序并且按照rowid查找

热度:69   发布时间:2016-04-27 11:16:34.0
[请教]union或者union all之后的结果怎么进行排序并且按照rowid查找?
[请教]union或者union all之后的结果怎么进行排序并且按照rowid查找?
在线关注。

------解决方案--------------------
SQL code
declare @rowid int set @rowid=2select * from (select * from aunion allselect * from b) aa where rowid=2 order by 排序列
------解决方案--------------------
SQL code
-----------sql中没有rowid,oracle中才有的。-----------sql中的行号是,row_numberselect * from (select rowid=row_number() over(order by xh),* from(select * from goalunion allselect * from goal )tmp)tmp2 where rowid=1
  相关解决方案