程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> sql isnull函數在各種數據庫中的用法分析

sql isnull函數在各種數據庫中的用法分析

編輯:MySQL綜合教程

本文章介紹了現在主流的數據庫中使用is null函數是一些區別和事項,有需要的朋友可以簡單的參考一下。

isnull在數據庫查詢中的應用,特別是再語句連接的時候需要用到

比如連接時候,某個字段沒有值但是又要左連接到其他表上 就會顯示空,

isnull可以判斷是否是NULL,如果是給個默認值

 

isnull("字段名","默認的數據")


ISNULL  
  使用指定的替換值替換    NULL。  
   
語法  
  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。  
   
   示例  
   A.    將    ISNULL    與    AVG    一起使用  
   下面的示例查找所有書的平均價格,用值    $10.00    替換    titles    表的    price    列中的所有    NULL    條目。   
    
 

 代碼如下 復制代碼   USE    pubs  
   GO  
   SELECT    AVG(ISNULL(price,    $10.00))  
   FROM    titles  
   GO  

    
   下面是結果集:  
   
   --------------------------    
   14.24                                              
   
   (1    row(s)    affected)  
   
   B.    使用    ISNULL  
   下面的示例為    titles    表中的所有書選擇書名、類型及價格。如果一個書名的價格是    NULL,那麼在結果集中顯示的價格為    0.00。   
    
  

 代碼如下 復制代碼 USE    pubs  
   GO  
   SELECT    SUBSTRING(title,    1,    15)    AS    Title,    type    AS    Type,    
         ISNULL(price,    0.00)    AS    Price  
   FROM    titles  
   GO  

    
   下面是結果集:   
  

 代碼如下 復制代碼  
   Title                        Type                    Price                      
   ---------------    ------------    --------------------------    
   The    Busy    Execut    business            19.99                                              
   Cooking    with    Co    business            11.95                                              
   You    Can    Combat      business            2.99                                                
   Straight    Talk    A    business            19.99                                              
   Silicon    Valley      mod_cook            19.99                                              
   The    Gourmet    Mic    mod_cook            2.99                                                
   The    Psychology      UNDECIDED          0.00                                                
   But    Is    It    User      popular_comp    22.95                                              
   Secrets    of    Sili    popular_comp    20.00                                              
   Net    Etiquette        popular_comp    0.00                                                
   Computer    Phobic    psychology        21.59                                              
   Is    Anger    the    En    psychology        10.95                                              
   Life    Without    Fe    psychology        7.00                                                
   Prolonged    Data      psychology        19.99                                              
   Emotional    Secur    psychology        7.99                                                
   Onions,    Leeks,      trad_cook          20.95                                              
   Fifty    Years    in      trad_cook          11.95                                              
   Sushi,    Anyone?      trad_cook          14.99                                              
   
   (18    row(s)    affected) 

國外一些說明

In the example above, if any of the "UnitsOnOrder" values are NULL, the result is NULL.

Microsoft's ISNULL() function is used to specify how we want to treat NULL values.

The NVL(), IFNULL(), and COALESCE() functions can also be used to achieve the same result.

In this case we want NULL values to be zero.

Below, if "UnitsOnOrder" is NULL it will not harm the calculation, because ISNULL() returns a zero if the value is NULL:

SQL Server / MS Access

 代碼如下 復制代碼

SELECT ProductName,UnitPrice*(UnitsInStock+ISNULL(UnitsOnOrder,0))
FROM Products
Oracle

Oracle does not have an ISNULL() function. However, we can use the NVL() function to achieve the same result:

 代碼如下 復制代碼

SELECT ProductName,UnitPrice*(UnitsInStock+NVL(UnitsOnOrder,0))
FROM Products
MySQL

MySQL does have an ISNULL() function. However, it works a little bit different from Microsoft's ISNULL() function.

In MySQL we can use the IFNULL() function, like this:SELECT ProductName,UnitPrice*(UnitsInStock+IFNULL(UnitsOnOrder,0))
FROM Products
or we can use the COALESCE() function, like this:

 代碼如下 復制代碼

SELECT ProductName,UnitPrice*(UnitsInStock+COALESCE(UnitsOnOrder,0))
FROM Products

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