今天执行sql语句时出现了高版本mysql愈发不兼容问题

'this is incompatible with sql_mode=only_full_group_by'

mysql8.0下'this is incompatible with sql_mode=only_full_group_by'问题解决办法

所以改一下mysql配置

在mysql.ini或者my.cnf下增加

[mysqld]
sql_mode ='STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION'

进行重启即可

相关文章:

  • 2021-10-15
  • 2023-02-17
  • 2022-12-23
  • 2021-11-17
  • 2021-11-24
  • 2021-08-29
  • 2021-11-07
  • 2021-06-12
猜你喜欢
  • 2022-12-23
  • 2021-08-02
  • 2021-10-27
  • 2022-01-31
  • 2021-11-20
  • 2022-02-13
相关资源
相似解决方案