#1 of SELECT list is not in GROUP EYclause and contains nonaggregated column b.unit whichis not functionally dependent on columns in GROUP B ause; this is incompatible with sql_mode=only_full_group_
时间: 2023-08-27 13:13:15 浏览: 106
这是一个 SQL 错误,提示 SELECT 语句中的第一个列在 GROUP BY 子句中没有被包含,并且包含一个非聚合列 b.unit,这个列在 GROUP BY 子句中不是功能相关的。这与 SQL 模式 only_full_group_by 不兼容。要解决这个问题,你需要确保 SELECT 语句中的所有非聚合列都被包含在 GROUP BY 子句中,或者使用合适的聚合函数对这些列进行聚合。你也可以修改 SQL 模式以允许这种语句。
相关问题
#1 of SELECT list is not in GROUP EYclause and contains nonaggregated column 'b.unit' whichis not functionally dependent on columns in GROUP B ause; this is incompatible with sql_mode=only_full_group_by
这个错误提示是由MySQL数据库的"only_full_group_by"模式引起的。这种模式要求在进行GROUP BY操作时,SELECT语句中的所有列都必须被包含在GROUP BY中,或者使用聚合函数对未被GROUP BY的列进行聚合计算。
解决方法可以有两种,一种是修改sql_mode参数,将其从"only_full_group_by"改为"traditional",这样就可以正常执行GROUP BY语句了。另一种方法是修改SELECT语句,将非聚合列进行聚合计算或者将其包含在GROUP BY中。
需要注意的是,修改sql_mode参数可能会影响其他的查询语句,因此需要谨慎处理。
Expression #6 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'xkxgdb.b.addCuttype' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
这是一个 SQL 查询错误,通常是因为在 GROUP BY 子句中没有包含 SELECT 语句中的所有非聚合列,或者这些列没有函数依赖于 GROUP BY 子句中的列。解决此问题的方法是修改 SQL 查询,确保所有非聚合列都包含在 GROUP BY 子句中,或者使用 MySQL 的非严格模式(sql_mode=NO_ENGINE_SUBSTITUTION)来避免此错误。
阅读全文