mysql_ERR:1055错误问题解决

原文链接: https://my.oschina.net/qbj/blog/823013

为什么80%的码农都做不了架构师?>>>   hot3.png

错误信息:[Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column 'lsmsp.tbd.VALUE' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by

 

Mysql 5.7.14 发现上述问题

解决方案

1.      运行 select @@sql_mode;

mysql_ERR:1055错误问题解决_第1张图片

2.    把第一步中查询到的值删掉only_full_group_by,其它的 在mysql配置文件my.cnf中添加配置项:

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

3.  运行 service mysqld restart 重启mysql;

转载于:https://my.oschina.net/qbj/blog/823013

你可能感兴趣的:(mysql_ERR:1055错误问题解决)