complete app
test / test (push) Successful in 9s

This commit is contained in:
2026-09-17 17:39:22 -05:00
parent 4d633a39be
commit 3d5de1dc3e
84 changed files with 24229 additions and 0 deletions
@@ -0,0 +1,11 @@
select
s.season_display,
count(*) as total_games,
sum(case when g.is_overtime then 1 else 0 end) as overtime_games,
sum(case when g.is_playoff then 1 else 0 end) as playoff_games,
round(avg(g.total_points), 1) as avg_total_points,
round(avg(g.point_differential), 1) as avg_margin
from main_marts.fct_game_results g
left join main_marts.dim_seasons s on g.season_key = s.season_key
group by s.season_display
order by s.season_display desc