MySQL8 执行SQL语句报错 "this is incompatible with sql_mode=only_full_group_by"
程序员文章站
2024-01-10 15:19:58
...
报错原因:
在mysql8.0以上的版本中,对于 group by 的这种聚合操作,如果在select 中的列,没有在group by 中出现,那么这个SQL是不合法的,因为列不在group by的从句中,所以对于默认设置了sql_mode=only_full_group_by的数据库,在使用group by 的时候,就要在select后使用MAX(),SUM(),ANT_VALUE()的这种聚合函数,才能完成GROUP BY 的聚合操作。
解决方案:
WIN10的my.ini下新增如下配置(我的目录是:C:\Program Files\MySql\mysql-8.0.17-winx64下的my.ini):
# sql模式设置
sql_mode="STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION"
重启mysql后在客户端查询 select @@sql_mode;
如下图:
至此问题解决!
推荐阅读
-
MySQL8 执行SQL语句报错 "this is incompatible with sql_mode=only_full_group_by"
-
mysql 报错 this is incompatible with sql_mode=only_full_group_by
-
MYSQL8.0 排序查询报错 this is incompatible with sql_mode=only_full_group_by
-
【mysql】sql语句分组查询遇到错误:this is incompatible with sql_mode=only_full_group_by,兼容性解决
-
mysql5.7 gruop by报错this is incompatible with sql_mode=only_full_group_by
-
mysql命令gruop by报错this is incompatible with sql_mode=only_full_group_by
-
mysql命令gruop by报错this is incompatible with sql_mode=only_full_group_by
-
mysql5.7 gruop by报错this is incompatible with sql_mode=only_full_group_by