讓 排序 按照 in 列表的的顯示順序排序輸出。

babyyellow發表於2018-12-05

業務上的稀奇古怪的要求。 必須滿足。 

如何 讓 sql  查詢出來的  資料的排序  是按照   id  在  in ()  列表中的順序來排序顯示呢  ? 

比如 :   select  * from tab  where  id  in  ( 1, 9 , 3,4,  8,5,6) ; 

要按照   1,9,3,48,5,6  的順序顯示資料。 

乍一看, 蒙圈了。 其本質 ,是按照 id  在列表中的位置 來排序。  知道了這個問題 的根本就好辦了。 

網上 有現成的   mysql , oracle , sqlserver 的方法。 

mysql寫法:

 

SELECT * FROM EVENT WHERE eventId IN(443,419,431,440,420,414,509)  ORDER BY INSTR(',443,419,431,440,420,414,509,',CONCAT(',',eventId,','))

 

oracle寫法:

select name from order where oderid in(111,222,333,444,555,666)order by instr('111,222,333,444,555,666',orderid)

 

sqlserver寫法:

Select * From Product Where id in (1,1588,15782,9887,54)  Order By charindex(','+ id +',', ',1,1588,15782,9887,54,')

那麼PG 資料庫的方法呢  ? 

發現pg 真是太牛逼。 我至少能寫出 5種方法。 


select * from tab  s(id)
 where id in (17,19,142867, 33) 
 order by position(id::text in '17,19,142867, 33') ;


 select * from tab  where  id  in (17,19,142867, 33)  
order by position(','||id ::text||',' in ','|| '17,19,142867, 33'||',' ) ;


select * from tab 
where id in (17,19,142867, 33)     
 order by  array_positions(array[17,19,142867, 33],id ) ;

select * from tab  s(id)
where id in (17,19,142867, 33)     
 order by  array_positions(‘{17,19,142867, 33}:: array[], id ) ;


select *  from tab 
where  id  = any(array[ 17,19,142867, 33]) 
order  by   array_positions(‘{17,19,142867, 33}:: array[], id ) ; 

前面兩種 是基於字串的構建,  效率上有些慢。 

下面的基於 數值型  陣列的方法 ,效率快很多。  


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

相關文章