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 s.season_label='2025/2026' 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
12
23
32
44
54
63
73
85
95
102
113
122
132
144
155
161
172
185
192
204
213
221
233
242
257
262
272
281
296
303
315
322
333
349
358
364
3712
386
392
403
412
422
434
443
4519
466
472
487
495
504
514
523
531
546
554
564
576
589
592
605
616
622
637
644
654
662
675
687
695
703
712
723
735
742
754
764
775
7811
792
803
816
824
833
8411
852
863
873
886
894
9045

Share link

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