Baselight

NBA All-Star Game Data

All basic information for every NBA All-Star game edition

@kaggle.ahmedbendaly_nba_all_star_game_data

Players
@kaggle.ahmedbendaly_nba_all_star_game_data.players

  • 13.21 KB
  • 450 rows
  • 7 columns
player_name

Player Name

total

Total

nba

NBA

aba

ABA

country

Country

height

Height

weight

Weight

Kareem Abdul-Jabbar1919USA218102
Shareef Abdur-Rahim11USA206102
Alvan Adams11USA20695
Michael Adams11USA17873
Bam Adebayo22USA206115
Mark Aguirre33USA198105
Danny Ainge11USA19379
LaMarcus Aldridge77USA211113
Jarrett Allen11USA211110
Ray Allen1010USA19692

CREATE TABLE players (
  "player_name" VARCHAR,
  "total" BIGINT,
  "nba" BIGINT,
  "aba" BIGINT,
  "country" VARCHAR,
  "height" BIGINT,
  "weight" BIGINT
);

Share link

Anyone who has the link will be able to view this.