程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> sql判斷null Oracle,sql server

sql判斷null Oracle,sql server

編輯:關於MYSQL數據庫

       sql server

      替換null:isnull(arg,value)

      如:select isnull(price,0.0) from orders ,如果price為null的話,用0.0替換

      與null比較: is not null,is null

      如 select * from orders where price is null ,price等於null

      如: select * from orders where price is not null ,price不等於null

      oracle

      替換null: nvl(arg,value)

      如: select nvl(price,0.0) form orders

      與null比較: is not null,is null

      如 select * from orders where price is null ,price等於null

      如: select * from orders where price is not null ,price不等於null

      oracle

      這是一個經常被問到的問題。尤其是客戶之前使用的是oracle,那麼他在使用sql server的時候會有一個疑問,就是在處理null值上面,sql server與oracle的行為不一樣

      在oracle中,null值會認為是一個無窮大的值,所以如果按照升序排列的話,則會被排在最後面

      在sql server中則正好相反,null值會被認為是一個無窮小的值,所以如果按照升序排列的話,則會被排在最前面

      如

      select [id]

      from [demo].[dbo].[orders] order by id

      則會看到如下的效果

      那麼,有沒有什麼辦法讓sql server的這個默認機制與oracle一樣嗎?答案是:沒有

      但我們可以想一些變通的辦法,例如可以像下面這樣寫代碼

      select [id]

      from [demo].[dbo].[orders] order by case when id is null then 1 else 0 end

      這樣的話,就可以看到如下的效果

      如果該列有創建索引,那麼可以看到如下的執行計劃

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved