顿搜
飞过闲红千叶,夕岸在哪
类目归类
There is a table courses with columns: student and class
Please list out all classes which have more than or equal to 5 students.
| student | class |
|---|---|
| A | Math |
| B | English |
| C | Math |
| D | Biology |
| E | Math |
| F | Computer |
| G | Math |
| H | Math |
| I | Math |
Should output:
| class |
|---|
| Math |
select class from courses group by class having count(distinct student ) >= 5