leetcode596---超过5名学生的课
Posted 叶卡捷琳堡
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode596---超过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 |
+---------+
提示:
学生在每个课中不应被重复计算。
二、题解
这里要注意student可能出现重复,因此要加上distinct关键字
select class
from courses
group by class
having count(distinct student) >= 5
以上是关于leetcode596---超过5名学生的课的主要内容,如果未能解决你的问题,请参考以下文章