對于mysql中替代null的IFNULL()與COALESCE()函數(shù)詳細說明
發(fā)表時間:2023-09-02 來源:明輝站整理相關軟件相關文章人氣:
[摘要]這篇文章主要給大家介紹了關于mysql中替代null的IFNULL()與COALESCE()函數(shù)的相關資料,文中通過示例代碼介紹的非常詳細,對大家具有一定的參考學習價值,需要的朋友們下面來一起看看看吧。在MySQL中isnull()函數(shù)不能作為替代null值! 如下: 首先有個名字為busines...
這篇文章主要給大家介紹了關于
mysql中替代
null的IFNULL()與COALESCE()
函數(shù)的相關資料,文中通過示例代碼介紹的非常詳細,對大家具有一定的參考學習價值,需要的朋友們下面來一起看看看吧。
在MySQL中isnull()
函數(shù)不能作為替代null值!
如下:
首先有個名字為business的表:
SELECT ISNULL(business_name,'no business_name') AS bus_isnull FROM business WHERE id=2
直接運行就會報錯:
錯誤代碼: 1582
Incorrect parameter count in the call to native function 'isnull'
所以,isnull()
函數(shù)在mysql中就行不通了?梢杂ifnull()
和coalesce()
代替。如下:
使用ifnull()
函數(shù):
SELECT IFNULL(business_name,'no business_name') AS bus_ifnull FROM business WHERE id=2
運行結果:
當查詢的值不為null時:
SELECT IFNULL(business_name,'no business_name') AS bus_ifnull FROM business WHERE id=1
結果如下:
使用coalesce()
函數(shù):
SELECT COALESCE(business_name,'no business_name') AS bus_coalesce FROM business WHERE id=2
結果如下:
當查詢值不為null時:
SELECT COALESCE(business_name,'no business_name') AS bus_coalesce FROM business WHERE id=1
其中:coalesce()
還可以返回第一個不為null的值。如下:
SELECT COALESCE(business_name,district_id,id) AS bus_coalesce FROM business WHERE id=2
那么,isnull()
在mysql中怎么用呢?答案就是用在where后面。如下:
SELECT * FROM business WHERE ISNULL(business_name)
結果如下:
同樣,is null
和is not null
也是用在where后面。
SELECT * FROM business WHERE business_name IS NULL
結果如下:
SELECT * FROM business WHERE business_name IS NOT NULL
總結
以上就是關于mysql中替代null的IFNULL()與COALESCE()函數(shù)詳解的詳細內容,更多請關注php中文網其它相關文章!
學習教程快速掌握從入門到精通的SQL知識。