在开发时,遇到mysql版本在5.7.X及以上版本时使用group by 语句会报以下的错误
Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'business_type' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_byat sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
这是因为mysql 5.7.X版本以上默认的sql配置是:sql_mode=“ONLY_FULL_GROUP_BY”,这个配置严格执行了"SQL92标准"。
解决方法:
方法一:
在Navicat Premium 16中执行以下语句即可,只有短时间内生效,例如电脑重启有可能失效。
set @@global.sql_mode='NO_AUTO_VALUE_ON_ZERO,STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION';
方法二:
首先检查
永久更改方法如下:
windows
找到mysql的安装目录中的my.ini文件对其进行修改
sql_mode="STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION"
添加完后需重启数据库
Linux
文件地址一般在:/etc/my.cnf,/etc/mysql/my.cnf
有的my.cnf没有sql_mode这项配置就自行添加这行配置上去,有的话把原来的更改为以下即可:
sql_mode="STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION"
添加完后需重启数据库