forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_596.sql
36 lines (35 loc) · 814 Bytes
/
_596.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
--596. Classes More Than 5 Students
--SQL Schema
--There is a table courses with columns: student and class
--
--Please list out all classes which have more than or equal to 5 students.
--
--For example, the table:
--
--+---------+------------+
--| student | class |
--+---------+------------+
--| A | Math |
--| B | English |
--| C | Math |
--| D | Biology |
--| E | Math |
--| F | Computer |
--| G | Math |
--| H | Math |
--| I | Math |
--+---------+------------+
--Should output:
--
--+---------+
--| class |
--+---------+
--| Math |
--+---------+
--
--
--Note:
--The students should not be counted duplicate in each course.
select class from courses
group by class
having count(distinct student) >= 5;