mysql_ERR:1055錯誤問題解決

錯誤信息:[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;

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;

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章