-
Notifications
You must be signed in to change notification settings - Fork 0
/
hard_601.sql
57 lines (46 loc) · 1.65 KB
/
hard_601.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
## hard: 601. Human Traffic of Stadium
### TASK
X city built a new stadium, each day many people visit it and the stats are saved as these columns: **id**, **visit_date**, **people**
Please write a query to display the records which have 3 or more consecutive rows and the amount of people more than 100(inclusive).
For example, the table `stadium`:
+------+------------+-----------+
| id | visit_date | people |
+------+------------+-----------+
| 1 | 2017-01-01 | 10 |
| 2 | 2017-01-02 | 109 |
| 3 | 2017-01-03 | 150 |
| 4 | 2017-01-04 | 99 |
| 5 | 2017-01-05 | 145 |
| 6 | 2017-01-06 | 1455 |
| 7 | 2017-01-07 | 199 |
| 8 | 2017-01-08 | 188 |
+------+------------+-----------+
For the sample data above, the output is:
+------+------------+-----------+
| id | visit_date | people |
+------+------------+-----------+
| 5 | 2017-01-05 | 145 |
| 6 | 2017-01-06 | 1455 |
| 7 | 2017-01-07 | 199 |
| 8 | 2017-01-08 | 188 |
+------+------------+-----------+
**Note:** Each day only have one row record, and the dates are increasing with id increasing.
*/
-- SOLUTION: # Write your MySQL query statement below
SELECT
DISTINCT s1.id,
s1.visit_date,
s1.people
FROM
stadium AS s1,
stadium AS s2,
stadium AS s3
WHERE
s1.people >= 100 AND s2.people >= 100 AND s3.people >= 100 AND
((s1.id + 1 = s2.id AND s2.id + 1 = s3.id) OR
(s1.id - 1 = s2.id AND s2.id + 2 = s3.id) OR
(s1.id - 2 = s2.id AND s2.id + 1 = s3.id))
ORDER BY
s1.id
;