3

我有以下 2 个导轨型号:

class Profile < ActiveRecord::Base
  belongs_to :user

  has_many :votes, through: :user

  default_scope includes(:user)

end

class Vote < ActiveRecord::Base
  attr_accessible :by, :for

  belongs_to :by, class_name: "User"
  belongs_to :for, class_name: "User"

  validates :by, :for, presence: true

  validates_uniqueness_of(:by, scope: :for)
end

我正在尝试在个人资料上创建一个“顶级”范围,该范围根据相关用户记录收到的“赞成”票数对个人资料进行排序

投票是由用户为用户创建的。“by”列表示投票的用户,“for”列表示收到投票的用户。我正在尝试获取获得最多选票的用户的个人资料。

这是我到目前为止所得到的:

   scope :top,
    select("profile.*, count(votes.id) AS votes_count").
    joins(:votes, :user).
    order("votes_count DESC")

这不适用于以下错误:

ActiveRecord::StatementInvalid: PG::Error: ERROR: column "votes_count" 不存在

它也没有考虑“for”列

谁能帮我吗 ?

4

2 回答 2

8

你错过了一个分组,我相信。这是您要执行的查询:

select profiles.*, count(votes.id) as votes_count 
  from profiles 
  left join votes on votes.for_id = profiles.user_id 
  group by profiles.id 
  order by votes_count desc;

所以,让我们把它变成一个 ActiveRecord 范围:

scope :top, joins('left join votes on votes.for_id = profiles.user_id').
  select('profiles.*, count(votes.id) as votes_count').
  group('profiles.id').
  order('votes_count desc')
于 2013-03-18T14:40:48.870 回答
2

主动记录方式

Profile.joins(:votes).group("profiles.id").order("count(profiles.id) DESC")
于 2015-11-10T04:37:32.320 回答