根據不同欄位,升降序排列查詢結果

pwz1688發表於2014-03-06

如下例:根據col1降序、col2升序。

with tt as
(select 'a1' col1, 1 col2
    from dual
  union all
  select 'a1' col1, 2 col2
    from dual
  union all
  select 'a2' col1, 0 col2
    from dual
  union all
  select 'a2' col1, 3 col2 from dual)
select col1, col2 from tt order by col1 desc, col2

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/21251711/viewspace-1102655/,如需轉載,請註明出處,否則將追究法律責任。

相關文章