Baselight
SELECT 
    c.name as competition_name,
    c.type,
    COUNT(m.match_id) as total_matches,
    COUNT(mps.match_id) as matches_with_player_stats,
    COUNT(DISTINCT ms.match_id) as matches_with_team_stats,
    SUM(CASE WHEN ms.type IN ('field_goals_total', 'fgm') THEN ms.value ELSE 0 END) as total_field_goals,
    STRING_AGG(DISTINCT s.season_label, ', ' ORDER BY s.season_label DESC) as seasons_available
FROM @blt.ultimate_basketball_dataset.competitions c
LEFT JOIN @blt.ultimate_basketball_dataset.seasons s ON c.competition_id = s.competition_id
LEFT JOIN @blt.ultimate_basketball_dataset.matches m ON s.season_id = m.season_id  
LEFT JOIN @blt.ultimate_basketball_dataset.match_player_stats mps ON m.match_id = mps.match_id
LEFT JOIN @blt.ultimate_basketball_dataset.match_stats ms ON m.match_id = ms.match_id
WHERE c.name LIKE '%NBA%'
GROUP BY c.name, c.type
ORDER BY COUNT(m.match_id) DESC, c.name
competition_nametypetotal_matchesmatches_with_player_statsmatches_with_team_statstotal_field_goalsseasons_available
NBA standardleague176555291765504213647273506732024/2025, 2023/2024, 2022/2023, 2021/2022, 2020/2021, 2019/2020, 2018/2019, 2017/2018, 2016/2017, 2015/2016
NBA WLeague10802021077428156618635092025/2026, 2024/2025, 2023/2024, 2022/2023, 2021/2022, 2019/2020, 2018/2019, 2017/2018, 2016/2017, 2015/2016, 2014/2015, 2013/2014, 2012/2013, 2011/2012, 2010/2011, 2009/2010, 2008/2009
NBA - G LeagueLeague52874152265776412256992024/2025, 2023/2024, 2022/2023, 2021/2022, 2020/2021, 2019/2020, 2018/2019, 2017/2018, 2016/2017, 2015/2016, 2014/2015, 2013/2014, 2012/2013
NBA vegasleague3839463838122494561582022/2023, 2021/2022, 2019/2020, 2018/2019, 2017/2018
NBA - Las Vegas Summer LeagueLeague2073722067982883793882025/2026, 2024/2025, 2023/2024, 2022/2023, 2021/2022, 2019/2020, 2018/2019, 2017/2018, 2016/2017, 2015/2016, 2014/2015, 2013/2014
NBA utahleague294442943218354992022/2023, 2021/2022, 2019/2020, 2018/2019, 2017/2018
NBA sacramentoleague184181840812205192022/2023, 2021/2022, 2019/2020, 2018/2019
NBA Salt Lake City Summer LeagueLeague7635761611136392025/2026, 2024/2025, 2023/2024, 2022/2023, 2021/2022
NBA africaleague10921092114912018/2019
NBA Orlando Summer Leaguecup1200002017, 2016, 2015, 2014, 2013
NBA orlandoleague0000null

Share link

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