解决mysql中select选择列与group by从句选择列不匹配报错问题

ERROR 1055 (42000): Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column ‘myhomework.student.SId’ which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by

原因:select选择的列需要与group by从句中的列有相同的,否则是不合法的。
解决方法:
在mysql状态下,依次执行

SELECT @@SESSION.sql_mode;

set sql_mode = 'STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION';
发布了13 篇原创文章 · 获赞 0 · 访问量 538

猜你喜欢

转载自blog.csdn.net/gageshan/article/details/102511009
今日推荐