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
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
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。