mysql5.7执行sql语句报错:In aggregated query without GROUP BY, expression #1 of SELECT list contains nonaggregated column 'yunva_changke.u.user_id'; this is incompatible with sql_mode=only_full_group_by


1.方法1,需要重启mysql服务


编辑/etc/my.cnf文件,加入如下参数,重启mysql
sql_mode = "STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION,NO_ZERO_DATE,NO_ZERO_IN_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER"
mysql5.7执行sql语句报错:In aggregated query without GROUP BY, expression #1 of SELECT list contains nonagg

2.方法2,不需要重启mysql服务


可以看到模式为only_full_group_by
mysql>show variables like '%sql_mode';

mysql> show session variables like '%sql_mode%';
mysql> show global variables like '%sql_mode%';


使当前会话失效
mysql> set global sql_mode='';
mysql> set session sql_mode='';

相关文章:

  • 2021-08-22
  • 2022-12-23
  • 2021-11-16
  • 2021-09-20
  • 2022-02-22
猜你喜欢
  • 2021-11-12
  • 2021-05-31
  • 2022-12-23
  • 2021-04-24
  • 2022-12-23
  • 2022-12-23
  • 2021-08-02
相关资源
相似解决方案