[Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated c

转载:https://blog.csdn.net/caijian_/article/details/78628153
[Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column ‘information_schema.PROFILING.SEQ’ which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by



主要是因为sql_mode设置导致的这个错误,设置错误有很多可能下面会有一下我解决这个错误查看的文章,本篇主要写我自己的解决办法。

[Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated c_第1张图片


   
   
   
   
  1. -- 查看sql_mode设置
  2. show variables like "sql_mode";
  3. -- 设置sql_mode
  4. set sql_mode= '';
  5. set sql_mode= 'NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES';




问题成功解决!

也可以可以手动修改MySql本地配置文件:

[Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated c_第2张图片


http://blog.csdn.net/u012129607/article/details/64124334

https://segmentfault.com/a/1190000005936172


你可能感兴趣的:(mysql)