mysql – Rails ActiveRecord按连接表关联计数排序

前端之家收集整理的这篇文章主要介绍了mysql – Rails ActiveRecord按连接表关联计数排序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个资源模型,可以使用“Acts As Votable”gem(Github page)进行投票.投票系统运作完美,但我试图按每个资源有多少票数显示页面.

目前我的控制器根据标签提取资源,而不是订购:

@resources = Resource.where(language_id: "ruby")

如果我获取一个单独的资源并调用“@ resource.votes.size”,它将返回它有多少票.但是,投票是另一个表,所以我认为需要进行某种联接,但我不知道如何做.我需要的是一个很好的有序ActiveRecord集合,我可以这样显示吗?

Book name – 19 votes

Book name – 15 votes

Book name – 9 votes

Book name – 8 votes

最佳答案
请尝试以下方法

@resources = Resouce.select("resources.*,COUNT(votes.id) vote_count")
                    .joins(:votes)
                    .where(language_id: "ruby")
                    .group("resources.id")
                    .order("vote_count DESC")

@resources.each { |r| puts "#{r.whatever}  #{r.vote_count}" }

要包含0票的资源,请使用外部联接.如果下面的示例不起作用,则必须更改连接语句以跨越正确的关系进行连接.

@resources = Resource.select("resources.*,COUNT(votes.id) vote_count")
                     .joins("LEFT OUTER JOIN votes ON votes.votable_id = resources.id AND votes.votable_type = 'Resource'")
                     .where(language_id: "ruby")
                     .group("resources.id")
                     .order("vote_count DESC")
原文链接:https://www.f2er.com/mysql/434031.html

猜你在找的MySQL相关文章