sql对查询为null的值赋默认值

 

       后台开发中经常需要给前端提供接口,返回的字段为null的时候需要设置字段的默认值。

 

针对不同的数据库实现方式有:

sqlserver:

Sql代码

    select isnull(字段,0) from 表名 --这样就是把空值赋值为0  

 MySQL:

Sql代码

select ifnull(字段,0) from 表名

 oracle:

Sql代码

select nvl(字段,0) from 表名 

 

Logo

更多推荐