oracle如果查询出的值为null记为0

oracle在使用sum函数计算式会遇到这样的情况。

如果sum的值为null,则什么都不显示。想要如果为null,则显示为0,怎么办?

方法1:

select when sum(t.money) is null then    0    else    sum(t.money) from Money t

方法2:

NVL(Expr1,Expr2)如果Expr1为NULL,返回Expr2的值,否则返回Expr1的值

例如:

select    NVL(SUM(t.money) ,0)  from Money t

 

 


原文:https://blog.csdn.net/Ideality_hunter/article/details/70770320 
 

你可能感兴趣的:(Oracle)