mysql命令gruop by报错this is incompatible with sql_mode=only_full_group_by
程序员文章站
2022-07-09 19:18:50
mysql命令gruop by报错this is incompatible with sql_mode=only_full_group_by 出现这个错误已导致在开发中mybatis的sql也运行不了 原因: 看一下group by的语法: select 选取分组中的列+聚合函数 from 表名称 ......
mysql命令gruop by报错this is incompatible with sql_mode=only_full_group_by
出现这个错误已导致在开发中mybatis的sql也运行不了
原因:
看一下group by的语法:
select 选取分组中的列+聚合函数 from 表名称 group by 分组的列
从语法格式来看,是先有分组,再确定检索的列,检索的列只能在参加分组的列中选。
我当前mysql版本5.7.25,
再看一下only_full_group_by的意思是:对于group by聚合操作,如果在select中的列,没有在group by中出现,那么这个sql是不合法的,因为列不在group by从句中,也就是说查出来的列必须在group by后面出现否则就会报错,或者这个字段出现在聚合函数里面。
在运行gruop by 是运行这条语句,这条语句只能解决当时的
set sql_mode='strict_trans_tables,no_zero_in_date,no_zero_date,error_for_division_by_zero,no_engine_substitution';
想要彻底解决这个问题 就得去改my.ini 配置(如果你们mysql 没有这个文件,就把my-default.ini 改成my.ini)
在 [mysqld]和[mysql]下修改最后一条配置
改为:
sql_mode ='strict_trans_tables,no_zero_in_date,no_zero_date,error_for_division_by_zero,no_auto_create_user,no_engine_substitution'
改为之后就可以彻底的玩耍了
上一篇: ASP.NET简单热词统计
下一篇: 数据库学习之一:数据库介绍
推荐阅读
-
mysql 使用group by报错 sql_mode=only_full_group_by 在navicat中修改session 中的sql_mode
-
【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 使用group by报错 sql_mode=only_full_group_by 在navicat中修改session 中的sql_mode
-
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
-
【MySQL】Mysql8.0及以上 only_full_group_by以及其他关于sql_mode原因报错详细解决方案