Baselight
Loading...Loading chart...
1select yearweek(m.date) as week
2       , SUM(CASE WHEN mps.goals_scored IS NOT NULL THEN mps.goals_scored ELSE 0 END) as goals_scored
3       , SUM(CASE WHEN mps.goals_assists IS NOT NULL THEN mps.goals_assists ELSE 0 END) as goals_assists
4from @blt.ultimate_soccer_dataset.seasons s
5inner join @blt.ultimate_soccer_dataset.competitions c on (s.competition_id = c.competition_id)
6inner join @blt.ultimate_soccer_dataset.matches m on (m.season_id = s.season_id)
7inner join @blt.ultimate_soccer_dataset.match_player_stats mps on (mps.match_id = m.match_id)
8where slug = 'premier-league' and season_label = '2025/2026' and m.status = 'Match Finished'
9group by all
10order by 1
weekgoals_scoredgoals_assists
2025332315
2025342318
2025353020
2025371814
2025382518
2025392920
2025402617
2025422417
2025433422
2025442215

Share link

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