Baselight
1select strftime(m.date, '%Y-%m-%d') as match_date, home_teams.name as home_team, away_teams.name as away_team, cast(home_score as int) || '-' || cast(away_score as int) as score, home_score + away_score as num_goals
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.teams home_teams on (m.home_team_id = home_teams.team_id)
6inner join @blt.ultimate_soccer_dataset.teams away_teams on (m.away_team_id = away_teams.team_id)
7where slug = 'premier-league' and season_label = '2025/2026' and status = 'Match Finished'
8order by num_goals desc
9limit 10
10
match_datehome_teamaway_teamscorenum_goals
2025-08-22West HamChelsea1-56
2025-10-25Manchester UnitedBrighton4-26
2025-08-15LiverpoolBournemouth4-26
2025-10-18Crystal PalaceBournemouth3-36
2025-09-27Manchester CityBurnley5-16
2025-10-18Crystal PalaceBournemouth3-36
2025-08-30WolvesEverton2-35
2025-08-30Manchester UnitedBurnley3-25
2025-08-30WolvesEverton2-35
2025-08-23ArsenalLeeds5-05

Share link

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