SELECT list is not in GROUP BY clause and contains nonaggregated column 'uvp.u.id' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by什么意思
时间: 2023-07-22 09:45:34 浏览: 168
这个错误信息是指在MySQL数据库中进行GROUP BY操作时,SELECT语句中出现了未在GROUP BY子句中出现的列,并且这些列未被聚合函数所处理。这是因为MySQL的only_full_group_by模式要求所有在SELECT语句中出现的列都必须在GROUP BY子句中出现或被聚合函数处理,否则会报错。解决方法是将所有未在GROUP BY子句中出现的列使用聚合函数处理或添加到GROUP BY子句中。
相关问题
Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'test.fruits.f_id' 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 以后的版本中,sql_mode 默认开启了 ONLY_FULL_GROUP_BY 模式,该模式要求 GROUP BY 后面的列必须在 SELECT 中出现,或者在 SELECT 中使用聚合函数进行计算。
如果你的查询语句中出现了类似上面的错误信息,有两种解决方法:
1. 将 sql_mode 设置为非 only_full_group_by 模式,可以通过下面的语句实现:
```
SET sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));
```
2. 在 GROUP BY 后面的列中加入所有 SELECT 中出现的列,或者使用聚合函数进行计算,例如:
```
SELECT fruits.f_id, fruits.f_name, COUNT(*) FROM fruits GROUP BY fruits.f_id, fruits.f_name;
```
Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'dx2.a.admin_id' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
这是一个SQL查询错误,出现了与"only_full_group_by"模式不兼容的问题。在这种模式下,如果SELECT列表中的某个表达式不在GROUP BY子句中,并且该表达式包含了非聚合的列,就会报错。
要解决这个问题,你可以尝试以下几种方法之一:
1. 将SELECT列表中的表达式添加到GROUP BY子句中。
2. 将非聚合的列包装在聚合函数中,例如使用SUM、COUNT等函数来处理它们。
3. 修改MySQL配置文件,禁用"only_full_group_by"模式。你可以在my.cnf文件中找到sql_mode选项并将其修改为合适的值。
请注意,具体的解决方法可能因你的查询和数据结构而异。如果你能提供更多的查询代码和表结构信息,我可以给出更具体的帮助。
阅读全文