MS_SQL
select nullif(isnull(A,0)+isnull(B,0),0) as [Sum] from table1 等价于 select isnull(A,0)+isnull(B,0) as [Sum] from table1
Oracle
用 select case when nvl(A,0)+nvl(B,0)=0 then null else nvl(A,0)+nvl(B,0)end as [Sum] from table1
以下为样例:
有两个float类型的字段A,B
但是值可以为空
如果用select A+B
则当一个字段的值为null 另一个有值的时候
查询出来的结果还是null
如何实现以下结果
A B
null null
10 null
null 20
10 20
如何能够查出结果为
sum
null
10
20
30
————————————————–