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 year(s.start_date) BETWEEN 2015 and 2024
7      and m.status = 'Match Finished' 
8      and events.event_type = 'goal'
9      and events.description not in ('Missed Penalty')
10group by all
11order by 1
minutenr_matches
155
271
386
483
5106
699
791
876
994
10103
1191
1286
13115
14106
1594
1697
17115
18103
19108
20102
21103
2288
23103
24104
25105
2684
27136
28112
2991
30118
31113
32105
33107
34107
35102
3697
3793
38109
3998
40101
41105
42118
4397
44121
45391
4662
4798
48111
49134
50120
51119
52117
53114
54134
55132
56135
57104
58117
59103
60119
61126
62110
63120
64132
65141
66136
67101
68112
69131
70130
71112
72120
73115
74126
75107
76111
77117
78108
79123
80120
81111
82125
83126
84122
85125
86119
87126
8896
89112
90712

Share link

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