为了账号安全,请及时绑定邮箱和手机立即绑定

左外连接,来自表的 laravel 组

左外连接,来自表的 laravel 组

PHP
九州编程 2023-03-04 11:04:47
如何左联接表已经分组,在我的例子中,表 A 有数据帐号,表 B 是事务,我必须在加入表 A 之前计算并按帐号分组,如果在 sql natife 中如下所示select name.account_no,amountfromci_account_name name left join (    select account_no,currency_id,sum(amount) as amount from     ci_account_transaction    where status <> 'X' and store_id = 62242    group by account_no,currency_id) as transon name.account_no = trans.account_no该编码有效,但是如何在 laravel 雄辩地实现我已经尝试了下面的代码但是有错误public function reportShowZerro($data){        $return = $this->accountNameModel->select (['ci_account_name.*'                            ,'amount'                        ])                        ->leftJoin("                            $this->model->select(['account_no','currency_id',\DB::raw('SUM(amount) amount')                            ])                            ->where('store_id',62242)                            ->where('status','<>','X')                            ->where('year',$data['year'])                            ->where('month',$data['month'])                            ->groupBy('account_no','currency_id')                            ) as trans",'ci_account_name.account_no','=','trans.account_no'                        ->whereIn('ci_account_name.store_id',[0,62242)                        ->get();        return $return;                 }
查看完整描述

1 回答

?
缥缈止盈

TA贡献2041条经验 获得超4个赞

public function reportWithModel($data){

        return $this->accountNameModel->select([

            'ci_account_name.*',

            'trans.store_id as trans_store_id','currency_id','amount'

                ])->leftJoin(

                    \DB::raw('

                    (select account_no,currency_id,store_id,sum(amount) as amount from 

                        ci_account_transaction

                        where status <> "X" and store_id = '.store()->id.'

                        and year = '.$data["year"].' and month = '.$data["month"].'

                        group by account_no,currency_id

                    ) as trans

                '),

                'trans.account_no',

                '=',

                'ci_account_name.account_no'

                )

                ->whereIn('ci_account_name.store_id',[0,store()->id])

                ->orderBy('ci_account_name.account_no')

                ->get();

    }


查看完整回答
反对 回复 2023-03-04
  • 1 回答
  • 0 关注
  • 97 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信