MySQL错误:SELECT列表不在GROUP BY子句中



我的查询有问题,mysql抛出以下错误:

#1055 - Expression #66 of SELECT list is not in GROUP BY clause and 
contains nonaggregated column 's.status' which is not functionally 
dependent on columns in GROUP BY clause; this is incompatible with 
sql_mode=only_full_group_by

查询为:

select   p.*,
pd.*,
m.*,
IF(s.status, s.specials_new_products_price, null) as specials_new_products_price,
IF(s.status, s.specials_new_products_price, p.products_price) as final_price
FROM products p 
LEFT JOIN specials s ON p.products_id = s.products_id  
LEFT JOIN manufacturers m using(manufacturers_id) , 
          products_description pd,
          categories c,
          products_to_categories p2c
WHERE p.products_view = 1  
AND p.products_status = 1
AND p.products_archive = 0
AND c.virtual_categories = 0
AND p.products_id = pd.products_id
AND p.products_id = p2c.products_id
AND p2c.categories_id = c.categories_id
AND pd.language_id = 1
GROUP BY p.products_id;

使用GROUP BY时,只有当每个组只有一个值时,才能在选择列表中使用表达式。否则会得到不明确的查询结果。

在您的案例中,MySQL认为s.status可能在每个组中有多个值。例如,您按p.products_id分组,但s.status是另一个表specials中的一列,可能与表products具有一对多关系。因此,specials中可能有多行具有相同的products_id,但status的值不同。如果是这种情况,那么查询应该使用status的哪个值?这是模棱两可的。

在您的数据中,您可能碰巧限制了行,使得specials中的每一行在products中只有一行。但是MySQL不能做出这样的假设。

MySQL 5.6及更早版本允许您编写这种模棱两可的查询,相信您知道自己在做什么。但MySQL 5.7在默认情况下允许更严格的强制执行(这可以像早期版本一样变得不那么严格)。

解决方法是遵循以下规则:选择列表中的每一列都必须属于以下三种情况之一:

  • 该列位于聚合函数(如COUNT()、SUM(),MIN、MAX()、AVERAGE()或GROUP_CONCT())中
  • 该列是GROUP BY子句中命名的列之一
  • 该列在功能上依赖于GROUP BY子句中命名的列

欲了解更多解释,请阅读这个优秀的博客:通过神话揭露集团


关于你的评论,我只能猜测,因为你还没有发布你的表定义。

我猜products_descriptionmanufacturers在功能上依赖于products,所以可以在选择列表中按原样列出它们。但这个假设可能不正确,我不知道你的模式。

无论如何,关于s.status的错误应该通过使用聚合函数来解决。我以MAX()为例。

SELECT p.*,
pd.*,
m.*,
MAX(IF(s.status, s.specials_new_products_price, NULL)) 
  AS specials_new_products_price,
MAX(IF(s.status, s.specials_new_products_price, p.products_price)) 
  AS final_price
FROM products p 
LEFT OUTER JOIN specials s ON p.products_id = s.products_id  
INNER JOIN manufacturers m ON p.manufacturers_id = m.manufacturers_id
INNER JOIN products_description pd ON p.products_id = pd.products_id
INNER JOIN products_to_categories p2c ON p.products_id = p2c.products_id
INNER JOIN categories c ON p2c.categories_id = c.categories_id
WHERE p.products_view = 1  
AND p.products_status = 1
AND p.products_archive = 0
AND c.virtual_categories = 0
AND pd.language_id = 1
GROUP BY p.products_id;

我还以正确的方式重写了您的联接。应避免逗号样式的联接。

您正在尝试执行ORDER BY吗?GROUP BY子句尝试为GROUP BY子句中的列中的每个不同值返回一行,除非向子句中添加更多列。抛出错误是因为子句中没有包含其他非聚合列——聚合列可能类似于MAX(p.products_id)SUM(p.products_price)。在查询中,有多行具有相同的p.product_price和不同的s.status值,因此GROUP BY没有意义。

MySQL分组处理方式:https://dev.mysql.com/doc/refman/5.7/en/group-by-handling.html聚合函数:http://dev.mysql.com/doc/refman/5.7/en/group-by-functions.html

如果你想在特定的列上使用GROUP BY并获得结果的id,有一个很好的技巧:

SELECT `distinct_column`, MAX(`id`), MAX(`another_int_column`) FROM `table_name` GROUP BY `distinct_column`

结果:

distinct_column  id       another_int_column
Abertamy         13579    11
Adamov           17765    14
Adolfovice       2924     3
Achotín          2241     2
Babice           17772    14

现在,您有了distinct_column中的不同值,以及相应行的值。

我认为id和another_int_column必须是唯一的,但我不确定。

不知道为什么没有人强调对s.status列使用ANY_VALUE()内置函数。

看看这个:https://dev.mysql.com/doc/refman/8.0/en/group-by-handling.htmlhttps://dev.mysql.com/doc/refman/8.0/en/miscellaneous-functions.html#function_any-值

相关内容

  • 没有找到相关文章

最新更新