我的问题
$summary['total_cash'] = DB::table('wallets')
->select(DB::raw('SUM(amount) as total_cash'))
->where('payment_details','affiliate product purchase commission')
->where('user_id',$group_id)
->first()->total_cash;
我得到的错误https://prnt.sc/sjllwv
这些表中都没有可用的数据
我要返回0
如果有任何打字错误,请忘记
谢谢您
1条答案
按热度按时间kkbh8khc1#
如果数据库中的amount字段默认为空,请尝试以下操作