ISNULL
使用指定的替换值替换 NULL。
语法
:ISNULL ( check_expression , replacement_value )
参数
check_expression 将被检查是否为NULL的表达式。如果不为NULL,这直接返回 该值,也就是 check_expression 这个表达式。如果为空这个直接返回 replacement_value这个表达的内容。check_expression 可以是任何类型的。
replacement_value 在 check_expression为 NULL时将返回的表达式。replacement_value 必须与 check_expresssion 具有相同的类型。
返回类型
返回与 check_expression 相同的类型。
注释
如果 check_expression 不为 NULL,那么返回该表达式的值;否则返回 replacement_value。
示例
1 示例数据
表tb_Student及其示例数据如下图所示。
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)<p><strong>3 执行结果</strong></p><p><img src="https://img.php.cn/upload/image/671/793/259/1592296307180157.png" title="1592296307180157.png" alt="76a0447ec8e6c00e3c6c263ebb29962.png"></p><p>推荐教程: 《<a href="https://www.php.cn/shujuku-tutorials.html" target="_blank">sql教程</a>》</p>
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END