我正在尝试使用avg执行查询并在行结果中执行计数,类似于:
SELECT r.id, avg( p.puntuacio ), count(p.puntuacio)
FROM receptes AS r, puntuacio_receptes_usuaris AS p
WHERE r.id = p.recepta_id
GROUP BY r.id
但我不知道我能否在Laravel上做,因为在Eloquent中无法在结果行中写入avg或count。
非常感谢
答案 0 :(得分:4)
Query Builder(Fluent)方法:
DB::table(DB::raw('receptes as r, puntuacio_receptes_usuaris as p'))
->select(array('r.id', DB::raw('avg( p.puntuacio ) as avg_p'), DB::raw('count(p.puntuacio) as count_p')))
->where('r.id', DB::raw('p.recepta_id'))
->groupBy('r.id')
->get();
这应该没有任何问题,但是如果您想使用您的Eloquent模型,我建议使用JOIN
而不是FROM
中使用两个表。
您可以访问avg_p
和count_p
来访问平均值并计算结果。
注意强>:
DB::raw()
指示Laravel不要逃避其中的内容see the doc。答案 1 :(得分:1)
如果您需要使用Eloquent会转义的内容,您可以使用DB::raw()
创建原始表达式。
有关示例,请参阅documentation on raw expressions。