sqlserver、oracle資料庫排序空值null問題解決辦法

iSQlServer發表於2010-03-02

【sqlserver】:

sqlserver 認為 null 最小。

升序排列:null 值預設排在最前。

要想排後面,則:order by case when col is null then 1 else 0 end ,col

降序排列:null 值預設排在最後。

要想排在前面,則:order   by case when col is null then 0 else 1 end , col desc 

【oracle】:

oracle認為 null 最大。

升序排列,預設情況下,null值排後面。

降序排序,預設情況下,null值排前面。

有幾種辦法改變這種情況:

(1)用 nvl 函式或decode 函式 將null轉換為一特定值

(2)用case語法將null轉換為一特定值(oracle9i以後版本支援。和sqlserver類似):
order by (case mycol when null then ’北京漂客’     else   mycol   end)

(3)使用nulls first 或者nulls last 語法。

這是oracle專門用來null值排序的語法。

nulls first :將null排在最前面。如:select * from mytb order by mycol nulls first

null last :將null排在最後面。如:select * from mytb order by mycol nulls last

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

相關文章