sql数据库isnull正确用法教程

发布时间:2019-11-13编辑:脚本学堂
有关sql数据库中isnull函数的用法,如何正确使用isnull是个问题,使用指定的替换值替换 NULL,需要的朋友参考下。

sql中isnull用法教程
 
isnull sql查询 select
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。

示例数据
表tb_Student及其示例数据如下图:
 
sql<a href=http://www.jb200.com/db/ target=_blank class=infotextkey>数据库</a>中isnull函数的用法
 
2、查询要求
查询出其中成绩(score)小于等于60的学生信息保存至表变量@tempTable中,当学生成绩为空时,成绩记为0。
 

复制代码 代码示例:
declare @tempTable table( 
    stuname nchar(10), 
    stuage int,  
               stuscore float); 
insert into @tempTable 
select name,age,ISNULL(score,0) from tb_Student 
where  ISNULL(score,0)<=60 
select * from @tempTable
 

 
3、执行结果
<a href=http://www.jb200.com/sql_server/ target=_blank class=infotextkey>sql数据库</a>中isnull函数的用法2