SQL Server、Oracle和MySQL判斷NULL的方法

來源:互聯網
上載者:User

本文講述SQL Server、Oracle、MySQL查出值為NULL的替換。
在SQL Server Oracle MySQL當資料庫中查出某值為NULL怎麼辦?
1、MSSQL: ISNULL()
文法
Java代碼 複製代碼 代碼如下:ISNULL ( check_expression , replacement_value )
ISNULL ( check_expression , replacement_value )

參數
check_expression
將被檢查是否為 NULL的運算式。check_expression 可以是任何類型的。
replacement_value
在 check_expression 為 NULL時將返回的運算式。replacement_value 必須與 check_expresssion 具有相同的類型。
傳回型別
返回與 check_expression 相同的類型。
注釋
如果 check_expression 不為 NULL,那麼返回該運算式的值;否則返回 replacement_value。
2、Oracle: NVL()
文法
Java代碼 複製代碼 代碼如下:NVL(eExpression1, eExpression2)
NVL(eExpression1, eExpression2)

參數
eExpression1, eExpression2
如果 eExpression1 的計算結果為 null 值,則 NVL() 返回 eExpression2。如果 eExpression1 的計算結果不是 null 值,則返回 eExpression1。eExpression1 和 eExpression2 可以是任意一種資料類型。如果 eExpression1 與 eExpression2 的結果皆為 null 值,則 NVL( ) 返回 NULL
傳回值類型
字元型、日期型、日期時間型、數值型、貨幣型、邏輯型或 null 值
說明
在不支援 null 值或 null 值無關緊要的情況下,可以使用 NVL( ) 來移去計算或操作中的 null 值。
3、Mysql: IFNULL()
文法
Java代碼 複製代碼 代碼如下:IFNULL(expr1,expr2)
IFNULL(expr1,expr2)

參數
expr1,expr2
假如expr1不是NULL,IFNULL()返回expr1,否則它返回expr2。IFNULL()返回一個數字或字串值,取決於它被使用的上下文

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.