Laravel 对多个 withCount 结果求和

Posted

技术标签:

【中文标题】Laravel 对多个 withCount 结果求和【英文标题】:Laravel sum multiple withCount results 【发布时间】:2022-01-01 05:24:51 【问题描述】:

我想按多个 whereCount 结果的总和排序。这是我的 whereCount

$q->withCount(['ordered', 'favorites']);

我想对这些ordered_count+favorites_count 求和并按此结果排序。我不太擅长使用 SQL,所以我需要一些帮助。如果使用 eloquent 查询生成器可以做到这一点,那就更好了。谢谢。

【问题讨论】:

你能把orderedfavorites的关系代码贴出来 【参考方案1】:

您可以使用orderByRaw按总和排序:

$q->withCount(['ordered', 'favorites'])
->orderByRaw('(ordered_count + favorites_count) desc')
->get();

【讨论】:

谢谢它的工作

以上是关于Laravel 对多个 withCount 结果求和的主要内容,如果未能解决你的问题,请参考以下文章

groupBy withCount 闭包(Laravel 5.3.26)

Laravel 在 withCount 方法上使用 where 子句

在 Laravel 的 withCount() 方法中使用 DISTINCT

laravel5.3统计 withCount()方法的使用

Laravel 雄辩用 whereHas 或其他限制 withCount

Laravel WithCount 使用 where