Skip to content

Commit fda102f

Browse files
authored
feat: add sql solution to lc problem: No.1435 (#752)
No.1435.Create a Session Bar Chart
1 parent 5b5081f commit fda102f

File tree

3 files changed

+111
-2
lines changed

3 files changed

+111
-2
lines changed

solution/1400-1499/1435.Create a Session Bar Chart/README.md

+37-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,43 @@ Result 表:
6464
### **SQL**
6565

6666
```sql
67-
67+
(SELECT
68+
'[0-5>' bin,
69+
SUM(CASE
70+
WHEN duration / 60 < 5 THEN 1
71+
ELSE 0
72+
END) total
73+
FROM
74+
Sessions) UNION (SELECT
75+
'[5-10>' bin,
76+
SUM(CASE
77+
WHEN
78+
(duration / 60 >= 5
79+
AND duration / 60 < 10)
80+
THEN
81+
1
82+
ELSE 0
83+
END) total
84+
FROM
85+
Sessions) UNION (SELECT
86+
'[10-15>' bin,
87+
SUM(CASE
88+
WHEN
89+
(duration / 60 >= 10
90+
AND duration / 60 < 15)
91+
THEN
92+
1
93+
ELSE 0
94+
END) total
95+
FROM
96+
Sessions) UNION (SELECT
97+
'15 or more' bin,
98+
SUM(CASE
99+
WHEN duration / 60 >= 15 THEN 1
100+
ELSE 0
101+
END) total
102+
FROM
103+
Sessions);
68104
```
69105

70106
<!-- tabs:end -->

solution/1400-1499/1435.Create a Session Bar Chart/README_EN.md

+37-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,43 @@ For session_id 5 has a duration greater than or equal to 15 minutes.
6565
### **SQL**
6666

6767
```sql
68-
68+
(SELECT
69+
'[0-5>' bin,
70+
SUM(CASE
71+
WHEN duration / 60 < 5 THEN 1
72+
ELSE 0
73+
END) total
74+
FROM
75+
Sessions) UNION (SELECT
76+
'[5-10>' bin,
77+
SUM(CASE
78+
WHEN
79+
(duration / 60 >= 5
80+
AND duration / 60 < 10)
81+
THEN
82+
1
83+
ELSE 0
84+
END) total
85+
FROM
86+
Sessions) UNION (SELECT
87+
'[10-15>' bin,
88+
SUM(CASE
89+
WHEN
90+
(duration / 60 >= 10
91+
AND duration / 60 < 15)
92+
THEN
93+
1
94+
ELSE 0
95+
END) total
96+
FROM
97+
Sessions) UNION (SELECT
98+
'15 or more' bin,
99+
SUM(CASE
100+
WHEN duration / 60 >= 15 THEN 1
101+
ELSE 0
102+
END) total
103+
FROM
104+
Sessions);
69105
```
70106

71107
<!-- tabs:end -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
(SELECT
2+
'[0-5>' bin,
3+
SUM(CASE
4+
WHEN duration / 60 < 5 THEN 1
5+
ELSE 0
6+
END) total
7+
FROM
8+
Sessions) UNION (SELECT
9+
'[5-10>' bin,
10+
SUM(CASE
11+
WHEN
12+
(duration / 60 >= 5
13+
AND duration / 60 < 10)
14+
THEN
15+
1
16+
ELSE 0
17+
END) total
18+
FROM
19+
Sessions) UNION (SELECT
20+
'[10-15>' bin,
21+
SUM(CASE
22+
WHEN
23+
(duration / 60 >= 10
24+
AND duration / 60 < 15)
25+
THEN
26+
1
27+
ELSE 0
28+
END) total
29+
FROM
30+
Sessions) UNION (SELECT
31+
'15 or more' bin,
32+
SUM(CASE
33+
WHEN duration / 60 >= 15 THEN 1
34+
ELSE 0
35+
END) total
36+
FROM
37+
Sessions);

0 commit comments

Comments
 (0)