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服務

問題解決!


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM