NBA Team Stats
20+ years of basic team stats for the regular season plus playoffs
@kaggle.mharvnek_nba_team_stats_00_to_18
20+ years of basic team stats for the regular season plus playoffs
@kaggle.mharvnek_nba_team_stats_00_to_18
CREATE TABLE nba_team_stats_00_to_23 (
"teamstatspk" BIGINT,
"team" VARCHAR,
"games_played" BIGINT,
"wins" BIGINT,
"losses" BIGINT,
"win_percentage" DOUBLE,
"min" BIGINT,
"points" BIGINT,
"field_goals_made" BIGINT,
"field_goals_attempted" BIGINT,
"field_goal_percentage" DOUBLE,
"three_pointers_made" BIGINT,
"three_pointers_attempted" BIGINT,
"three_point_percentage" DOUBLE,
"free_throws_made" BIGINT,
"free_throw_attempted" BIGINT,
"free_throw_percentage" DOUBLE,
"offensive_rebounds" BIGINT,
"defensive_rebounds" BIGINT,
"rebounds" BIGINT,
"assists" BIGINT,
"turnovers" BIGINT,
"steals" BIGINT,
"blocks" BIGINT,
"blocks_attempted" BIGINT,
"personal_fouls" BIGINT,
"personal_fouls_drawn" BIGINT,
"plus_minus" BIGINT,
"season" VARCHAR
);
CREATE TABLE nba_team_stats_playoffs_00_to_21 (
"teamstatspk" BIGINT,
"team" VARCHAR,
"games_played" BIGINT,
"wins" BIGINT,
"losses" BIGINT,
"win_percentage" DOUBLE,
"minutes" DOUBLE,
"points" DOUBLE,
"field_goals_made" DOUBLE,
"field_goals_attempted" DOUBLE,
"field_goal_percentage" DOUBLE,
"three_pointers_made" DOUBLE,
"three_pointers_attempted" DOUBLE,
"three_point_percentage" DOUBLE,
"free_throws_made" DOUBLE,
"free_throw_attempted" DOUBLE,
"free_throw_percentage" DOUBLE,
"offensive_rebounds" DOUBLE,
"defensive_rebounds" DOUBLE,
"rebounds" DOUBLE,
"assists" DOUBLE,
"turnovers" DOUBLE,
"steals" DOUBLE,
"blocks" DOUBLE,
"blocks_attempted" DOUBLE,
"personal_fouls" DOUBLE,
"personal_fouls_drawn" DOUBLE,
"plus_minus" DOUBLE,
"season" VARCHAR
);
Anyone who has the link will be able to view this.