我有Product
,每个产品has_many ratings
。我正在尝试创建一个:highest_rated
产品范围,按照最高平均评级对产品进行排序(每个评级都在ratings
表中)。我试过这个:
scope :highest_rated, includes(:ratings).order('avg(ratings.rating) DESC')
但这给了我一个misuse of aggregate: avg()
错误。
有关如何以最高平均评分订购我的产品的任何提示?
答案 0 :(得分:5)
这有效:
scope :highest_rated, includes(:ratings).group('product_id').order('AVG(ratings.rating) DESC')
仅提取具有现有评级的产品:
scope :highest_rated, includes(:ratings).group('product_id').where('ratings.rating IS NOT NULL').order('AVG(ratings.rating) DESC')
编辑:以上内容在PostgreSQL中不起作用。我使用了它(它适用于SQLite和PostgreSQL):
scope :highest_rated, where("products.id in (select product_id from ratings)").group('products.id, products.name, products.all_other_fields').joins(:ratings).order('AVG(ratings.rating) DESC')