错误
报错如下:
Error querying database. Cause: : com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Expression #2 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'temp.applyinstId' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
重点是:
this is incompatible with sql_mode=only_full_group_by
原因
这个错误是mysql 5.7 版本及以上版本会出现的问题:
- mysql 5.7版本默认的sql配置是:sql_mode=“ONLY_FULL_GROUP_BY”,这个配置严格执行了"SQL92标准"。
在sql执行时:
- 输出的结果是叫target list,就是select后面跟着的字段,还有一个地方group by column,就是 group by后面跟着的字段。由于开启
ONLY_FULL_GROUP_BY
的设置,所以如果一个字段没有在target list 和group by字段中同时出现,或者是聚合函数的值的话,那么这条sql查询是被mysql认为非法的,会报错误。
解决
1、临时
修改sql_mode:
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
但是这种方式每次重启,sql_mode又会初始化。
2、彻底
修改mysql配置文件my.ini:
在 [mysqld]下添加:
sql_mode =STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION;
参考:
【1】:https://blog.csdn.net/qq_42175986/article/details/82384160
【2】:https://www.cnblogs.com/jim2016/p/6322703.html
【3】:https://blog.csdn.net/sinat_40770656/article/details/101198274
【4】:https://blog.csdn.net/liuyongyuan2012/article/details/81946388