超过5名学生的课
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了超过5名学生的课相关的知识,希望对你有一定的参考价值。
题目描述:
有一个courses 表 ,有: student (学生) 和 class (课程)。
请列出所有超过或等于5名学生的课。
例如,表:
+---------+------------+
| student | class |
+---------+------------+
| A | Math |
| B | English |
| C | Math |
| D | Biology |
| E | Math |
| F | Computer |
| G | Math |
| H | Math |
| I | Math |
+---------+------------+
应该输出:
+---------+
| class |
+---------+
| Math |
+---------+
解题思路:
group by 按照课程排序,count 计算的是每个课程学生的数量,然后按照题意对学生去重,所有超过或等于5名学生的课
select class from courses group by class having count(distinct student) >= 5
以上是关于超过5名学生的课的主要内容,如果未能解决你的问题,请参考以下文章