-
Notifications
You must be signed in to change notification settings - Fork 0
/
easy_596.sql
46 lines (37 loc) · 928 Bytes
/
easy_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
37
38
39
40
41
42
43
44
45
46
/*
## easy: 596. Classes More Than 5 Students
### TASK
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.
*/
-- SOLUTION: # Write your MySQL query statement below
SELECT
class
FROM
courses
GROUP BY
class
HAVING
COUNT(DISTINCT student) >=5
;