码迷,mamicode.com
首页 > 其他好文 > 详细

#Leetcode# 596. Classes More Than 5 Students

时间:2019-05-11 16:05:56      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:from   blank   duplicate   family   column   problems   href   tco   pre   

https://leetcode.com/problems/classes-more-than-5-students/

 

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.

代码:

# Write your MySQL query statement below
SELECT class FROM Courses
GROUP BY class Having Count(distinct student)>=5

  FH

#Leetcode# 596. Classes More Than 5 Students

标签:from   blank   duplicate   family   column   problems   href   tco   pre   

原文地址:https://www.cnblogs.com/zlrrrr/p/10848790.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!