发布网友 发布时间:2022-04-26 14:15
共6个回答
热心网友 时间:2022-04-09 21:32
根据数据库的不同,采用如下不同的方法:
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 表名;
拓展资料:
SQL SELECT 语句
SELECT 语句用于从表中选取数据。
结果被存储在一个结果表中(称为结果集)。
SQL SELECT 语法
SELECT 列名称 FROM 表名称。
热心网友 时间:2022-04-09 22:50
--通用sql写法追问无列名 也没有0显示啊
追答--通用sql写法
select case when null is null then 0 end
--sql server写法
select isnull(null,0)
--Oracle 写法
select nvl(null,0)
热心网友 时间:2022-04-10 00:24
oracle的话用nvl(字段,'0')热心网友 时间:2022-04-10 02:16
oracle:热心网友 时间:2022-04-10 04:24
SELECT ISNULL(列,0) FROM 表1热心网友 时间:2022-04-10 06:48
select nvl(a,0) from table