1. 程式人生 > >關於資料庫中欄位空值的SQL排序的問題

關於資料庫中欄位空值的SQL排序的問題



在Oracle中進行查詢排序時,如果排序欄位裡面有空值的情況下,排序結果可能會達不到自己想要的結果。

如 select * from tableTest order by VISITS desc
 
將原來的sql語句改寫為:

select * from tableTest

order by VISITS desc nulls last

"nulls last"控制將空值記錄放在後面,當然,你也可以用"nulls first"將控制記錄放在前面。

1、oracle 空值處理,排序過濾


oracle認為 null 最大。

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

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

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

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

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

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

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

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

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

2、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