isnull的使用方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了isnull的使用方法相关的知识,希望对你有一定的参考价值。
is null
查看列数据为空
select*from lrb where lrid is null
ISNULL
使用指定的替换值替换 NULL。
使用指定的替换值替换 NULL。
语法
ISNULL ( check_expression , replacement_value )
参数
check_expression
将被检查是否为 NULL的表达式。check_expression 可以是任何类型的。
replacement_value
在 check_expression 为 NULL时将返回的表达式。replacement_value 必须与 check_expresssion 具有相同的类型。
返回类型
返回与 check_expression 相同的类型。
以上是关于isnull的使用方法的主要内容,如果未能解决你的问题,请参考以下文章