mysql8.0遇到的一个坑(group by 分组 sql语句的用法)

使用 sql 查询时 mysql 报如下错误,
完整报错如下:

ERROR 1055 (42000): Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'spider_rule.link_parameter.id' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by

 

经查,是由于默认的 MySQL 配置中 sql_mode 配置了 only_full_group,需要 GROUP BY中包含所有 在 SELECT 中出现的字段。因此需要在 MySQL 的配置中去掉这个配置。

使用 SQL 语句可以查询这个配置:

select @@sql_mode;

解决方法

在 配置文件(my.cnf)中 修改 sql_mode 的配置为:

$ vim /usr/local/etc/my.cnf
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)