在 MySQL 中,执行查询有时会导致与 sql_mode 相关的错误环境。其中一个错误是:
#1055 - Expression of SELECT list is not in GROUP BY clause and contains nonaggregated column this is incompatible with sql_mode=only_full_group_by
当查询在 SELECT 列表中包含未包含在 GROUP BY 子句中且未聚合的列(例如,使用 SUM、COUNT 等)时,就会发生此错误。 )。要解决此问题,必须修改查询以在 GROUP BY 子句中包含非聚合列或对其进行聚合。
在提供的 MySQL 查询中:
select libelle, credit_initial, disponible_v, sum(montant) as montant FROM fiche, annee, type where type.id_type=annee.id_type and annee.id_annee=fiche.id_annee and annee = year(current_timestamp) GROUP BY libelle order by libelle asc
非聚合列-聚合列是disponible_v。要解决该错误,请将其添加到 GROUP BY 子句中:
... GROUP BY libelle, disponible_v ...
或者,使用 SUM 或 AVG 等函数聚合 disponible_v:
... GROUP BY libelle HAVING SUM(disponible_v) > 0 ...
对于 8.0 之前的 MySQL 版本,您可能需要通过添加以下内容来调整 MySQL 配置文件 /etc/mysql/conf.d/mysql.cnf 中的 sql_mode 设置lines:
[mysqld] sql_mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
更改配置文件后重新启动 MySQL。
以上是为什么 MySQL 会抛出'SELECT 列表的表达式不在 GROUP BY 子句中”错误,如何修复它?的详细内容。更多信息请关注PHP中文网其他相关文章!