场景:列之间相加起来,结果发现加和列为空;
解决:设想其中的列可能是有空值,影响总体的列之和
方法:给列加判断如果为空值显示为0
根据数据库的不同,采用如下不同的方法:
oracle
将空值返回0用如下语句:
select nvl(字段名,0) from 表名;
sqlserver
将空值返回0用如下语句:
方法一:select isnull(字段名,0) from 表名;
字符型:select isnull(mycol,‘0’) as newid from mytable
整型:select isnull(mycol,0) as newid from mytable
方法二:case ……end
case when columnName is null then 0 else columnName end
mysql
将空值返回0用如下语句:
select ifnull(字段名,0) from 表名;
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)