Baselight
Loading...Loading chart...
1select events.minute, count(distinct m.match_id) as nr_matches
2from @blt.ultimate_soccer_dataset.seasons s
3inner join @blt.ultimate_soccer_dataset.competitions c on (s.competition_id = c.competition_id)
4inner join @blt.ultimate_soccer_dataset.matches m on (m.season_id = s.season_id)
5inner join @blt.ultimate_soccer_dataset.match_events events on (events.match_id = m.match_id)
6where slug = 'premier-league' and m.status = 'Match Finished'
7      and events.event_type = 'goal'
8      and events.description not in ('Missed Penalty')
9group by all
10order by 1
minutenr_matches
186
2123
3128
4127
5155
6136
7127
8122
9134
10152
11140
12135
13165
14150
15147
16159
17160
18150
19160
20165
21146
22144
23160
24144
25151
26138
27183
28157
29140
30168
31167
32155
33163
34176
35153
36148
37150
38152
39145
40148
41159
42165
43152
44178
45574
4688
47145
48180
49186
50190
51188
52176
53170
54191
55185
56205
57166
58180
59162
60171
61187
62168
63177
64184
65201
66210
67171
68180
69194
70177
71177
72173
73178
74177
75164
76169
77164
78166
79178
80179
81179
82180
83189
84173
85192
86184
87204
88158
89167
901026

Share link

Anyone who has the link will be able to view this.