首页 > 其他 > 详细

[LeetCode] Classes More Than 5 Students

时间:2017-10-24 11:41:31      阅读:291      评论:0      收藏:0      [点我收藏+]

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;
# 2772 ms

 

# Write your MySQL query statement below
SELECT class FROM (SELECT class,COUNT(DISTINCT student) AS num FROM courses GROUP BY class) AS temp_table WHERE num >= 5;
# 2666 ms

 

[LeetCode] Classes More Than 5 Students

原文:http://www.cnblogs.com/immjc/p/7722687.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!