NBA Basic Player Data By Game
Aggregated Box Scores (1996-2020)
@kaggle.kenhuang41_nba_basic_game_data_by_player
Aggregated Box Scores (1996-2020)
@kaggle.kenhuang41_nba_basic_game_data_by_player
CREATE TABLE games_2000s (
"game_id" VARCHAR,
"team" VARCHAR,
"oppt" VARCHAR,
"team_score" BIGINT,
"oppt_score" BIGINT,
"result" VARCHAR,
"score_diff" BIGINT,
"player" VARCHAR,
"mp" DOUBLE,
"fg" BIGINT,
"fga" BIGINT,
"fg3" BIGINT,
"fg3a" BIGINT,
"ft" BIGINT,
"fta" BIGINT,
"orb" BIGINT,
"drb" BIGINT,
"trb" BIGINT,
"ast" BIGINT,
"stl" BIGINT,
"blk" BIGINT,
"tov" BIGINT,
"pf" BIGINT,
"plus_minus" BIGINT,
"pts" BIGINT
);
Anyone who has the link will be able to view this.