后台开发中经常需要给前端提供接口,返回的字段为null的时候需要设置字段的默认值。
针对不同的数据库实现方式有:
sqlserver:
Sql代码
select isnull(字段,0) from 表名 --这样就是把空值赋值为0
MySQL:
Sql代码
select ifnull(字段,0) from 表名
oracle:
Sql代码
select nvl(字段,0) from 表名
-->
2019-03-26 17:32:29 来源:admin 点击:714
后台开发中经常需要给前端提供接口,返回的字段为null的时候需要设置字段的默认值。
针对不同的数据库实现方式有:
sqlserver:
Sql代码
select isnull(字段,0) from 表名 --这样就是把空值赋值为0
MySQL:
Sql代码
select ifnull(字段,0) from 表名
oracle:
Sql代码
select nvl(字段,0) from 表名
postgissql
case when 字段 then ‘’ else 字段 from 表名