热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

mysql5.7.14groupby字段中内容是中文报错的解决方法

想通过tag字段来分组,报出以下异常1055Expression#8ofSELECTlistisnotinGROUPBYclauseandcontainsnonag

 

 

想通过tag字段来分组,报出以下异常

1055 Expression #8 of SELECT list
is not in GROUP BY clause and contains nonaggregated column 'wis.Tags.id' which is not
functionally dependent on columns in GROUP BY clause; this is incompatible with
sql_mode=only_full_group_by

主要是sql_mode 中有一个 only_full_group_by 的值,用sql在服务器上查了一下里面的确有这个参数

首先在服务器上登录mysql :" mysql -u root -p"

查询在sql_mode中是否有only_full_group_by 参数

接下来查看sql_mode

 查询结果如下

 发现的确在sql_mode中有only_full_group_by这个参数,然后重新设置sql_mode的值

修改后查询sql_mode

此时发现only_full_group_by已经没有了

重启mysql服务,异常解决

 

转:https://www.cnblogs.com/royal-salute/p/8124692.html



推荐阅读
author-avatar
大眼妹PS珺珺
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有