mysql查询null异常:attempted to return null from a method with a primitive return type

select sum(deposit_amount)
from tb_commission_ib_day

mysql查询时报异常:

attempted to return null from a method with a primitive return type

是因为查询时结果是 null, 需要给默认值

select IFNULL(sum(deposit_amount),0)
from tb_commission_ib_day

上一篇:Toad客户端连接Oracle数据库报错 ORA-12170:TNS:连接超时


下一篇:org.apache.ibatis.binding.BindingException: Mapper method 'attempted to return null from a method with a primitive return type (long).