1.mysql遇见Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggre

Expression #2 of SELECT list is not in GROUP BY clause and contains
nonaggregated column ‘sss.month_id’ which is not functionally
dependent on columns in GROUP BY clause; this is incompatible with
sql_mode=only_full_group_by

问题出现的原因:
MySQL 5.7.5及以上功能依赖检测功能。如果启用了ONLY_FULL_GROUP_BY SQL模式(默认情况下),MySQL将拒绝选择列表,HAVING条件或ORDER BY列表的查询引用在GROUP BY子句中既未命名的非集合列,也不在功能上依赖于它们。(5.7.5之前,MySQL没有检测到功能依赖关系,默认情况下不启用ONLY_FULL_GROUP_BY。有关5.7.5之前的行为的说明,请参见“MySQL 5.6参考手册”。)

mysql---遇到数据库迁移等问题

 

 sql_mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION

比如我这里是增加了配置文件之后

service mysql restart

重启即可

相关文章:

  • 2022-12-23
  • 2022-02-03
  • 2021-11-10
  • 2021-07-01
  • 2021-03-27
  • 2022-01-09
  • 2021-04-12
猜你喜欢
  • 2021-10-04
  • 2021-12-02
  • 2022-01-25
  • 2022-12-23
  • 2021-06-27
  • 2021-09-18
  • 2021-04-08
相关资源
相似解决方案