MySQL5.7 中使用 group by 报错 this is incompatible with sql_mode=only_full_group_by
2024-09-16
44
1. 报错场景2. 问题分析3. 查看sql模式4. 解决方案(去除
ONLY_FULL_GROUP_BY)" class="reference-link" target="_blank">4. 解决方案(去除
ONLY_FULL_GROUP_BY
)1. 报错场景
在sql语句中使用 group by
报错
SELECT FROM `user` GROUP BY `gender`;
SQLSTATE[42000]: Syntax error or access violation: 1055 Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'liang.lcy_user.id' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by"
2. 问题分析
一、原理层面
这个错误发生在mysql 5.7 版本及以上版本,5.7版本默认的sql_mode配置中包含 ONLY_FULL_GROUP_BY
,这个配置严格执行了”SQL92标准”
很多人从5.6升级到5.7时,为了语法兼容,大部分都会选择调整sql_mode,使其保持跟5.6一致,为了尽量兼容程序
二、sql层面: sql执行时,出现该原因:
简单来说就是:输出的结果是叫 target list
,就是select后面跟着的字段,还有一个地方 group by column
,就是group by后面跟着的字段。
由于开启了ONLY_FULL_GROUP_BY的设置,所以如果一个字段没有在target list
和 group by
字段中同时出现,或者是聚合函数的值的话,那么这条sql查询是被mysql认为非法的,会报错误。
举例
// 报错
SELECT FROM `user` GROUP BY `gender`;
// 不报错,因为gender字段在target list和group by字段中同时出现了
SELECT gender FROM `user` GROUP BY `gender`;
3. 查看sql模式
查看 sql_mode 的语句
show global variables like 'sql_mode';
通过命令行可以看到 sql_mode
的值有一堆,将最前面的 ONLY_FULL_GROUP_BY
去掉即可解决这个问题
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
ONLY_FULL_GROUP_BY)" class="reference-link" target="_blank">4. 解决方案(去除 ONLY_FULL_GROUP_BY
)
方案一: 临时性解决 (执行SQL语句)
此方式重启MySQl服务后失效
set @@GLOBAL.sql_mode="STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION";
方案二: 永久性解决(修改配置文件 my.cnf)
在 [mysqld]
下面添加以下内容
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 服务
mysql.server restart
更新于:2个月前赞一波!
相关文章
- PHP 导出 Excel 报错: Formula Error: An unexpected error occurred
- linux中Qt工程编译报错: error: 找不到 -lGL
- PHP7.4命令行报错:VC运行库和PHP版本不兼容
- 打开vmware虚拟机报错—该虚拟机似乎正在使用中
- 前端请求PHP接口,报错跨域问题
- Apache报错:无法使用可靠的服务器域名
- mysql报错xamp table 'pma__recent' is read only
- 浏览器报错 ERR_SSL_VERSION_OR_CIPHER_MISMATCH
- linux编译报错:/usr/include/c++/7/cstdlib:41:10: fatal error: bits/c++config.h: No such file or directory
- Linux下编译libxml源码时,报错:/usr/include/x86_64-linux-gnu/bits/fcntl2.h:50:4: error: call to '__open...
- Linux下编译libxml2的源码报错:you must specify a host type if you use `--no-verify'
- vscode中通过ssh远程连接linux报错:Bad owner or permissions on C:\\Users\\用户名/.ssh/config
- Open SUSE Linux中编译内核模块报错
- EF报错Win32Exception: 证书链是由不受信任的颁发机构颁发的。
- EF Core 8 (EF8) Contains报错:Microsoft.Data.SqlClient.SqlException (0x80131904): 关键字 'WITH' 附近有语法错误。
- C/C++使用gcc或g++编译报错:error: parameter ‘xxx’ set but not used [-Werror=unused-but-set-parameter]
- Ubuntu Linux中apt/dpkg安装报错:Sub-process /usr/bin/dpkg returned an error code (1)
- Git报错 fatal : fetch-pack: invalid index-pack output
- Qt编译报错:error: LNK1181: cannot open input file 'debugmain.obj'
- C++编译报错:fatal error: speex/speex_resampler.h: No such file or directory
文章评论
评论问答