mysql在使用group by查询报错this is incompatible with sql_mode=only_full_group_by

具体报错如下:

 Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'zl.tm.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及以上功能依赖检测功能。如果启用了ONLY_FULL_GROUP_BY SQL模式(默认情况下),MySQL将拒绝选择列表,HAVING条件或ORDER BY列表的查询引用在GROUP BY子句中既未命名的非集合列,也不在功能上依赖于它们。(5.7.5之前,MySQL没有检测到功能依赖关系,默认情况下不启用ONLY_FULL_GROUP_BY。

解决办法:

1.查询mysql 相关mode

select @@global.sql_mode;

可以看到模式中包含了ONLY_FULL_GROUP_BY,只要没有这个配置即可。 
我的Mysql版本是5.7.21,默认是带了ONLY_FULL_GROUP_BY模式。

2.重设模式值

通过配置文件设置:vim /etc/my.cnf
在my.cnf(my.ini)添加如下配置:
[mysqld]
sql_mode='你想要的模式'

如:

sql_mode = "STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"

在windows如图:

mysql在使用group by查询报错this is incompatible with sql_mode=only_full_group_by_第1张图片

在查询模式:

已经没有 ONLY_FULL_GROUP_BY模式了。

测试sql查询成功。

你可能感兴趣的:(数据库)