mysql-ERROR 1140 (42000)错误解决办法
Posted 黑龙orz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql-ERROR 1140 (42000)错误解决办法相关的知识,希望对你有一定的参考价值。
查询语句:
select student.stu_name,max(score.number) from student inner join score on student.stu_id = score.student_id inner join course on score.course_id = course.cou_id inner join teacher on course.teacher_id = teacher.tea_id where teacher.tea_name ="杨艳";
报错:
ERROR 1055 (42000): Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column ‘oldboy.student.stu_name‘ which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
解决办法:
退出mysql
vim /etc/my.ini
在[mysqld]项下添加如下代码:
sql_mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
:wq保存退出
service mysqld restart 重启mysqld服务
问题解决!
以上是关于mysql-ERROR 1140 (42000)错误解决办法的主要内容,如果未能解决你的问题,请参考以下文章
mysql创建表报错:ERROR 1118 (42000) ...Row size too large (> 8126)
mysql创建表报错:ERROR 1118 (42000) ...Row size too large (> 8126)
mysql 使用 GROUP BY 时报错 ERROR 1055 (42000)
ERROR 1176 (42000): Key 'XXX' doesn't exist in table 'XXX'报错处理