我有两张已加入的桌子。
表:会员
字段:公司,affid
+ --------------------------- +
|公司| affid |
| Test1 | t1 |
| Test1 | T2 |
表:申请人
字段:affid,佣金
+ --------------------------- +
| affid |佣金|
| t1 | 25 |
| t2 | 30 |
每家公司都有2个affid's。
所以公司名称: Test1
已经加入: t1,t2
我要做的是拉一张表格,显示公司名称及其总佣金。
+ --------------------------- +
|公司|佣金|
| Test1 | 55 |
这就是我所拥有的,我需要做出哪些改变?
$data = DB::table('applicant')
->join('affiliate','applicant.affid','=','affiliate.affid')
->select(DB::raw('company,SUM(commission) as commission,'))
->groupBy('company')
->get();