mysql 1045错误

mysql 5.7以上执行修改密码时可能会产生一个错误1055

[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 问题就解决啦

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

如果遇到1054错误

解决方法是查看字符串是否加上引号,字段是否写错


猜你喜欢

转载自blog.csdn.net/qq_36999656/article/details/79804486
今日推荐