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,13 @@
select
player_name,
team,
count(*) as games,
round(avg(usage_pct), 1) as usage,
round(avg(true_shooting_pct) * 100, 1) as efficiency,
round(avg(points), 1) as ppg
from main_intermediate.int_player_performance
where season_start_year = (select max(season_start_year) from main_intermediate.int_player_performance)
and minutes_played >= 20
group by player_name, team
having count(*) >= 20
order by usage desc