MySQL5.7 group by新特性导致的1055错误(低版本mysql升级5.7可能导致该错误)

在升级到MySQL5.7后,由于默认开启的sql_mode=only_full_group_by,导致SELECT语句中包含未在GROUP BY中出现的非聚合列时出现1055错误。解决方法是在my.cnf配置文件中修改sql_mode,删除only_full_group_by选项。
摘要由CSDN通过智能技术生成

select * where dept.path like concat(?,'%')  AND cc.charge_id

in (2638952438426624,2644398611229696,2648683693877248)  group by SUBSTRING_INDEX(dept.path,':',1)

### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Expression

#2 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'crm.dept.path_name' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Expression #2 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'crm.dept.path_name' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by



此错误是由于mysql5.7及其以上版本默认是严格分组模式,不允许group by 分组字段之外的字段出现select后面,如果group by之外的字段是必须使用的 则需要采用聚合MAX(),SUM等一些函数将字段或结果合并。

解决办法(针对linux版本) :

打开mysql命令行,执行命令:

select @@sql_mode

查出sql_mode的值,复制这个值,在my.cnf中添加配置项(把查询到的值删掉only_full_group_by这个选项,其他的都复制过去)

sql_mode=STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
如果 [mysqld] 这行被注释掉的话记得要打开注释。然后重重启mysql服务。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值