MySql报错only_full_group_by的解决办法
回到顶部
问题
MySQL5.7以上版本,默认开启了only_full_group_by模式:
> select @@global.sql_mode; ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
开启这个模式后,不符合的group by语句就会报错:
SELECT list is not in GROUP BY clause and contains nonaggregated column 'test' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
原因
MySQL在低版本(5.7.x以下)中允许select后面的非聚合列不出现在group by中。以下sql在低版本中是可以运行的,但是在5.7及以上版本会报错:
select name, age, count(name) from student group by age
order by后面的列必须是在select中存在。
select、having或order by后面存在的非聚合列必须全部在group by中存在。
而没有遵循原则的sql会被认为是不合法的sql,如SQLServer、Oracle、PostgreSql都不支持select target list中出现语义不明确的列,MySQL 5.7开始修正,即ONLY_FULL_GROUP_BY语义。
解决
方案一:保持only_full_group_by模式开启
MySQL提供了any_value(field)函数允许非分组字段的出现(和关闭 only_full_group_by 模式有相同效果)。
select any_value(name), age, count(name) from student group by age
或者 通过group by所有字段
select name, age, count(name) from student group by age,name
方案二:关闭only_full_group_by模式
1)当前会话关闭失效
> select @@sql_mode
复制查询出来的值,去除only_full_group_by,再设置回去:
> set sql_mod='去除only_full_group_by后的值'
比如:在navicat中当前窗口执行,在当前窗口生效,新开窗口失效。
2)当前服务关闭失效
> select @@global.sql_mode
> set @@global.sql_mode='去除only_full_group_by后的值'
3)永久生效
修改MySQL配置文件my.conf,然后重启MySQL。
[mysqld] sql_mode=去除only_full_group_by后的值
4)JDBC参数关闭only_full_group_by
jdbc:mysql://localhost:3306/test?sessionVariables=sql_mode='去除only_full_group_by后的值'