-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathClasses with more than 5 students 3-10-22
More file actions
54 lines (40 loc) · 1.02 KB
/
Classes with more than 5 students 3-10-22
File metadata and controls
54 lines (40 loc) · 1.02 KB
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
47
48
49
50
51
52
53
54
link ---- https://www.codingninjas.com/codestudio/problems/classes-more-than-5-students_2105464?topList=top-100-sql-problems
Problem Statement
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 |
+---------+
-----------------------------solution ----------------------------
select class from courses
group by 1
having count (*) >4
------------------solution 2 -----------------------
SELECT
class
FROM
(SELECT
class, COUNT(DISTINCT student) AS num
FROM
courses
GROUP BY class) AS temp_table
WHERE
num >= 5
;