-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathClassesMoreThan5Students.sql
40 lines (38 loc) · 1.04 KB
/
ClassesMoreThan5Students.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
# Source : https://leetcode.com/problems/classes-more-than-5-students
# Author : Dean Shi
# Date : 2017-08-16
##################################################################################
#
# 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