GroupingError:错误:列必须出现在 GROUP BY 子句中或在聚合函数中使用

GroupingError: ERROR: column must appear in the GROUP BY clause or be used in an aggregate function(GroupingError:错误:列必须出现在 GROUP BY 子句中或在聚合函数中使用)
本文介绍了GroupingError:错误:列必须出现在 GROUP BY 子句中或在聚合函数中使用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的控制器中有代码按最高平均评论评分对专辑进行排名(使用此解决方案中的代码 如何通过 has_many 评论关系显示评分最高的专辑):

I have code in my controller that is ranking albums by the highest average review rating (used code from this solution How to display highest rated albums through a has_many reviews relationship):

@albums = Album.joins(:reviews).select("*, avg(reviews.rating) as average_rating").group("albums.id").order("average_rating DESC")

此代码在我的开发环境 (sqlite3) 中运行良好,但是当我将代码推送到 heroku 和 postgresql 时,我收到了这个错误:

This code works perfectly in my development environment (sqlite3), however when I pushed the code to heroku and to postgresql I got this error:

PG::GroupingError: ERROR:  column "reviews.id" must appear in the GROUP BY clause or be used in an aggregate function

我意识到这是一个相当普遍的问题,我对 SQL 有点缺乏经验,所以我在重构代码时遇到了麻烦,以便它可以在我的开发和生产环境中工作.

I realize this is a fairly common problem, I am a bit inexperienced with SQL so I am having trouble refactoring the code so it will work in both my development and production environments.

推荐答案

不允许选择reviews.id(通过通配符*隐式选择)而不添加将其添加到 GROUP BY 子句或应用聚合函数,如 avg().解决方案是执行以下操作之一:

You are not allowed to select reviews.id (selected implicitly through the wildcard *) without adding it to the GROUP BY clause or applying an aggregate function like avg(). The solution is to do one of the following:

  1. 从您的选择中删除通配符 *
  2. 将字段 reviews.id 添加到您的组子句中
  3. 显式选择 reviews.id 并对其应用聚合函数(例如 sum(reviews.id))
  4. 将通配符 * 替换为特定于表的通配符 albums.*
  1. Remove the wildcard * from your select
  2. Add the field reviews.id to your group clause
  3. Select reviews.id explicitly and apply an aggregate function to it (e.g. sum(reviews.id))
  4. Replace the wildcard * with the table-specific wildcard albums.*

第二个和第三个选项在您的场景中没有多大意义.根据您的评论,我添加了选项四.

The second and third option do not make much sense in your scenario though. Based on your comment, I added option four.

这篇关于GroupingError:错误:列必须出现在 GROUP BY 子句中或在聚合函数中使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

FastAPI + Tortoise ORM + FastAPI Users (Python) - Relationship - Many To Many(FastAPI+Tortoise ORM+FastAPI用户(Python)-关系-多对多)
MyBatis support for multiple databases(MyBatis支持多个数据库)
Window functions not working in pd.read_sql; Its shows error(窗口函数在pd.read_sql中不起作用;它显示错误)
(Closed) Leaflet.js: How I can Do Editing Geometry On Specific Object I Select Only?((已关闭)Leaflet.js:如何仅在我选择的特定对象上编辑几何图形?)
in sqlite update trigger with multiple if/Case Conditions(在具有多个IF/CASE条件的SQLite UPDATE触发器中)
Android: Why is Room so slow?(Android:为什么Room这么慢?)