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
sql isnull()、nvl()、ifnull() 和 coalesce() 函数
请看下面的 “products” 表:
p_id | productname | unitprice | unitsinstock | unitsonorder |
---|---|---|---|---|
1 | computer | 699 | 25 | 15 |
2 | printer | 365 | 36 | |
3 | telephone | 280 | 159 | 57 |
假如 “unitsonorder” 是可选的,而且可以包含 null 值。
我们使用如下 select 语句:
select productname,unitprice*(unitsinstock+unitsonorder) from products
在上面的例子中,如果有 “unitsonorder” 值是 null,那么结果是 null。
微软的 isnull() 函数用于规定如何处理 null 值。
nvl(), ifnull() 和 coalesce() 函数也可以达到相同的结果。
在这里,我们希望 null 值为 0。
下面,如果 “unitsonorder” 是 null,则不利于计算,因此如果值是 null 则 isnull() 返回 0。
sql server / ms access
select productname,unitprice*(unitsinstock+isnull(unitsonorder,0)) from products
oracle
oracle 没有 isnull() 函数。不过,我们可以使用 nvl() 函数达到相同的结果:
select productname,unitprice*(unitsinstock+nvl(unitsonorder,0)) from products
mysql
mysql 也拥有类似 isnull() 的函数。不过它的工作方式与微软的 isnull() 函数有点不同。
在 mysql 中,我们可以使用 ifnull() 函数,就像这样:
select productname,unitprice*(unitsinstock+ifnull(unitsonorder,0)) from products
或者我们可以使用 coalesce() 函数,就像这样:
select productname,unitprice*(unitsinstock+coalesce(unitsonorder,0)) from products