mysql遇见contains nonaggregated column 'information_schema.PROFILING.SEQ'异常

Posted Ruthless

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql遇见contains nonaggregated column 'information_schema.PROFILING.SEQ'异常相关的知识,希望对你有一定的参考价值。

报错如下:
[Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column ‘information_schema.PROFILING.SEQ‘ which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by

问题出现的原因:
mysql 5.7.5及以上功能依赖检测功能。如果启用了ONLY_FULL_GROUP_BY SQL模式(默认情况下),MySQL将拒绝选择列表,HAVING条件或ORDER BY列表的查询引用在GROUP BY子句中既未命名的非集合列,也不在功能上依赖于它们。(5.7.5之前,MySQL没有检测到功能依赖关系,默认情况下不启用ONLY_FULL_GROUP_BY。有关5.7.5之前的行为的说明,请参见“MySQL 5.6参考手册”。)

解决方案:
select @@global.sql_mode
SET sql_mode=(SELECT REPLACE(@@sql_mode,‘ONLY_FULL_GROUP_BY‘,‘‘)); ##当前session变量生效

SET global sql_mode=(SELECT REPLACE(@@sql_mode,‘ONLY_FULL_GROUP_BY‘,‘‘)); ##全局变量生效

以上是关于mysql遇见contains nonaggregated column 'information_schema.PROFILING.SEQ'异常的主要内容,如果未能解决你的问题,请参考以下文章

mysql问题解决SELECT list is not in GROUP BY clause and contains nonaggregated column

mysql查询出现In aggregated query without GROUP BY, expression #1 of SELECT list contains nonaggregated c

已解决SELECT list is not in GROUP BY clause and contains nonaggregated column

解决mysql报错:- Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated co

MYSQL报错:1055 - Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated col

docker mysql8.0.17异常Expression #2 of SELECT list is not in GROUP BY clause and contains nonaggregate