码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2018-04-20 16:00:36      阅读:560      评论:0      收藏:0      [点我收藏+]

标签:列表   AC   ace   set   条件   选择   res   expr   sql   

报错如下:
[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'异常

标签:列表   AC   ace   set   条件   选择   res   expr   sql   

原文地址:https://www.cnblogs.com/linjiqin/p/8890966.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!