我有3张 table :
Posts
--id
--post
Points
--id
--user_id
--post_id
--points
User(disregard)
--id
--username
我的模型是这样的。
Class Posts extends Eloquent {
function points(){
return $this->hasMany('points', 'post_id');
}
}
Class Points extends Eloquent {
function posts() {
return $this->belongsTo('posts', 'post_id');
}
我该如何排序,以便返回结果按最高点数排序。我还需要知道如何获得每个帖子的点数总和。
Post_id | Post | Points<-- SumPoints
5 |Post1 | 100
3 |Post2 | 51
1 |Post3 | 44
4 |Post4 | 32
这是我的代码:
$homePosts = $posts->with("filters")
->with(array("points" => function($query) {
$query->select()->sum("points");
}))->groupBy('id')
->orderByRaw('SUM(points) DESC')
->paginate(8);
我可以知道如何使用查询构建器和/或模型关系来解决它吗
最佳答案
Eloquent 方式:
$posts = Post::leftJoin('points', 'points.post_id', '=', 'posts.id')
->selectRaw('posts.*, sum(points.points) as points_sum')
->orderBy('points_sum', 'desc')
->paginate(8);
Query\Builder
方式完全相同,只是结果不会是 Eloquent 模型。关于php - Laravel 4.2 : How to use order by SUM in Laravel,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29247951/