Baselight
Loading...Loading chart...
1select events.minute+coalesce(events.stoppage_time, 0) as match_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) >= 2015 and m.status = 'Match Finished' 
7      and events.minute > 45
8      and events.event_type = 'goal'
9      and events.description not in ('Missed Penalty')
10group by all
11order by 1
match_minutenr_matches
4664
47100
48113
49135
50120
51119
52118
53115
54135
55135
56137
57108
58119
59103
60120
61130
62110
63120
64134
65141
66138
67102
68114
69131
70130
71112
72120
73117
74126
75107
76112
77118
78110
79125
80120
81112
82126
83127
84124
85126
86119
87126
88100
89113
90134
91127
92113
93111
9491
9589
9654
9733
9816
998
1005
1013
1031

Share link

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