Query Result
Loading...Loading chart...
1SELECT DISTINCT st.* EXCLUDE (season_id, team_id, season_year, competition_name)
2FROM @blt.ultimate_soccer_dataset.standings st
3INNER JOIN @blt.ultimate_soccer_dataset.seasons s ON (st.season_id = s.season_id)
4INNER JOIN @blt.ultimate_soccer_dataset.competitions c ON (s.competition_id = c.competition_id)
5WHERE c.slug = 'world-cup' and s.season_label = '2026' and team_name = 'Portugal'
6ORDER BY snapshot_date DESC, st.competition_name, season_year DESC, rank