为Clarity编辑:
我需要一些方法让此Query只返回
中的不同course_ids->wherein('course_id', $array)
查询的一部分。它获得已完成课程的总数,但如果用户不止一次完成课程,则将其计入总数。因此,如果您想知道有多少学生完成了课程,如果学生已经多次完成课程,那么该数字将会被取消。
public function report_count(){
$array = \Session::get('course_report')['course'];
return $this->hasOne('Tracking', 'roster_id')
->selectRaw('roster_id, count(*) as aggregate')
->where('status', 1)
->wherein('course_id', $array)
->groupBy('roster_id');
我尝试在最后添加groupBy('course_id'),但它不起作用。
答案 0 :(得分:0)
固定。将查询更改为
return $this->hasOne('Tracking', 'roster_id')
->selectRaw('roster_id, count(distinct course_id) as aggregate')
->where('status', 1)
->wherein('course_id', $array)
->groupBy('roster_id');
根据@Robin R的建议,我继续搜索在selectRaw查询中使用SQL的方法,而不是以雄辩的方式尝试这种方法。感谢所有帮助我进行头脑风暴的人。