sqlserver有用函数
2024-07-21 02:07:44
供稿:网友
<!--#include file="./news/const.asp"-->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 pubsgoselect avg(isnull(price, $10.00))from titlesgo
下面是结果集:
-------------------------- 14.24 (1 row(s) affected)
b. 使用 isnull
下面的示例为 titles 表中的所有书选择书名、类型及价格。如果一个书名的价格是 null,那么在结果集中显示的价格为 0.00。
use pubsgoselect substring(title, 1, 15) as title, type as type, isnull(price, 0.00) as pricefrom titlesgo
下面是结果集:
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)