mirror of
https://git.turbo-data.com/nprasad2077/Streamlit_NBA.git
synced 2026-09-22 06:25:18 +00:00
7 lines
144 B
SQL
7 lines
144 B
SQL
select
|
|
game_competitiveness_tier,
|
|
count(*) as games
|
|
from main_marts.fct_game_results
|
|
group by game_competitiveness_tier
|
|
order by games desc
|