File tree 3 files changed +111
-2
lines changed
solution/1400-1499/1435.Create a Session Bar Chart
3 files changed +111
-2
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,43 @@ Result 表:
64
64
### ** SQL**
65
65
66
66
``` 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);
68
104
```
69
105
70
106
<!-- tabs:end -->
Original file line number Diff line number Diff line change @@ -65,7 +65,43 @@ For session_id 5 has a duration greater than or equal to 15 minutes.
65
65
### ** SQL**
66
66
67
67
``` 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);
69
105
```
70
106
71
107
<!-- tabs:end -->
Original file line number Diff line number Diff line change
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);
You can’t perform that action at this time.
0 commit comments