Skip to content

Latest commit

 

History

History
57 lines (43 loc) · 1.02 KB

File metadata and controls

57 lines (43 loc) · 1.02 KB

596. Classes More Than 5 Students

Description

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

  • mysql
/*
 Success Detail:
 Runtime: 202 ms, faster than 97.41% of MySQL online submissions for Classes More Than 5 Students.
 Memory Usage: 0 MB, less than 100% of MySQL online submissions for Classes More Than 5 Students.
 */
SELECT class
from courses
GROUP BY class
HAVING count(DISTINCT student) >= 5