语法

mssql isnull函数会用到索引吗 sql server isnull函数_null


mssql isnull函数会用到索引吗 sql server isnull函数_null

ISNULL ( check_expression , replacement_value )

mssql isnull函数会用到索引吗 sql server isnull函数_null


mssql isnull函数会用到索引吗 sql server isnull函数_null


mssql isnull函数会用到索引吗 sql server isnull函数_null

备注

mssql isnull函数会用到索引吗 sql server isnull函数_null

如果 check_expression 不为 NULL,则返回它的值;否则,在将 replacement_value 隐式转换为 check_expression 的类型(如果这两个类型不同)后,则返回前者。

mssql isnull函数会用到索引吗 sql server isnull函数_null


mssql isnull函数会用到索引吗 sql server isnull函数_null

参数

mssql isnull函数会用到索引吗 sql server isnull函数_null

check_expression

mssql isnull函数会用到索引吗 sql server isnull函数_null


mssql isnull函数会用到索引吗 sql server isnull函数_null

将被检查是否为 NULL 的表达式。check_expression 可以为任何类型。

mssql isnull函数会用到索引吗 sql server isnull函数_null


mssql isnull函数会用到索引吗 sql server isnull函数_null

replacement_value

mssql isnull函数会用到索引吗 sql server isnull函数_null


mssql isnull函数会用到索引吗 sql server isnull函数_null

当 check_expression 为 NULL 时要返回的表达式。replacement_value 必须是可以隐式转换为 check_expresssion 类型的类型。

mssql isnull函数会用到索引吗 sql server isnull函数_null


mssql isnull函数会用到索引吗 sql server isnull函数_null

返回类型

mssql isnull函数会用到索引吗 sql server isnull函数_null

返回与 check_expression 相同的类型。

mssql isnull函数会用到索引吗 sql server isnull函数_null


mssql isnull函数会用到索引吗 sql server isnull函数_null

示例

mssql isnull函数会用到索引吗 sql server isnull函数_null

A. 将 ISNULL 与 AVG 一起使用

mssql isnull函数会用到索引吗 sql server isnull函数_null

以下示例查找所有产品的重量平均值。它用值 50 替换 Product 表的 Weight 列中的所有 NULL 项。

mssql isnull函数会用到索引吗 sql server isnull函数_null


mssql isnull函数会用到索引吗 sql server isnull函数_null

复制代码

mssql isnull函数会用到索引吗 sql server isnull函数_null

USE AdventureWorks;

mssql isnull函数会用到索引吗 sql server isnull函数_null

GO

mssql isnull函数会用到索引吗 sql server isnull函数_null

SELECT AVG(ISNULL(Weight, 50))

mssql isnull函数会用到索引吗 sql server isnull函数_null

FROM Production.Product;

mssql isnull函数会用到索引吗 sql server isnull函数_null

GO