数据库-1055报错-把only_full_group_by去掉

[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

 

不知道为何,在用nivacat_mysql时,每次允许sql语句时都提示这个问题。

把only_full_group_by去掉。

后来找到了方法,解决问题了。

如下:

select version(), @@sql_mode;

SET sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY','')); 

第一行是查看sql_mode。

第二行是修改。

Window 最好在mysql根目录添加一个.ini配置文件。

原文地址:https://www.cnblogs.com/famcoo/p/9999550.html