Navicat Premium 16 版本
这个错误是由于 MySQL 的新版本中默认开启了
ONLY_FULL_GROUP_BY
模式,即在 GROUP BY 语句中的 SELECT 列表中,只能包含分组或聚合函数,不能包含其他列。而你的查询语句中出现了一个列senior_two.score.student_id
,它既没有被分组也没有被聚合,因此 MySQL 报出了这个错误。原句:
SELECT * FROM score LEFT JOIN course on score.course_id=course.course_id GROUP BY course.course_name
运行后报错:
1055 - Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'senior_two.score.student_id' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
解决这个问题的方法有两种:
- 关闭
ONLY_FULL_GROUP_BY
模式。在:mysql> 界面中输入下面的命令即可关闭:
SET sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY','');
2 .将
senior_two.score.student_id
列加入 GROUP BY 列表中,这样 MySQL 就能知道如何处理这个列了。例如,修改你的查询语句为:文章来源:https://www.toymoban.com/news/detail-608557.html
SELECT senior_two.score.student_id, AVG(senior_two.score.score) AS avg_score FROM senior_two.score GROUP BY senior_two.score.student_id;
这个查询将按学生 ID 分组,并计算每个学生的平均分。这样 MySQL 就不会报出上述错误了。文章来源地址https://www.toymoban.com/news/detail-608557.html
到了这里,关于1055 - Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column ‘se的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!