Baselight

NBA Top 50 All-Time Scorers

List of the top 50 all-time scorers in the history of the NBA

@kaggle.isaienkov_nba_top_50_alltime_scorers

Nba
@kaggle.isaienkov_nba_top_50_alltime_scorers.nba

  • 15.55 KB
  • 50 rows
  • 14 columns
rank

Rank

player

Player

position

Position

teams

Teams

total_points

Total Points

total_games

Total Games

points_per_game

Points Per Game

field_goals

Field Goals

three_points_goals

Three Points Goals

free_shots

Free Shots

born

Born

active_player

Active Player

hall_of_fame

Hall Of Fame

country

Country

1LeBron JamesSFCleveland Cavaliers (2003–2010, 2014–2018) Miami Heat (2010–2014) Los Angeles Lakers (2018–present)39201144327.2143562311817819841USA
2Kareem Abdul-JabbarCMilwaukee Bucks (1969–1975) Los Angeles Lakers (1975–1989)38387156024.6158371671219471995USA
3Karl MalonePFUtah Jazz (1985–2003) Los Angeles Lakers (2003–2004)369281476251352885978719632010USA
4Kobe BryantSGLos Angeles Lakers (1996–2016)3364313462511719182783781978-20202020USA
5Michael JordanSGChicago Bulls (1984–1993, 1995–1998) Washington Wizards (2001–2003)32292107230.112192581732719632009USA
6Dirk NowitzkiPF/CDallas Mavericks (1998–2019)31560152220.7111691982724019782023DEU
7Wilt ChamberlainCPhiladelphia/San Francisco Warriors (1959–1965) Philadelphia 76ers (1965–1968) Los Angeles Lakers (1968–1973)31419104530.11268160571936-19991979USA
8Shaquille O'NealCOrlando Magic (1992–1996) Los Angeles Lakers (1996–2004) Miami Heat (2004–2008) Phoenix Suns (2008–2009) Cleveland Cavaliers (2009–2010) Boston Celtics (2010–2011)28596120723.7113301593519722016USA
9Carmelo AnthonySFDenver Nuggets (2003–2011) New York Knicks (2011–2017) Oklahoma City Thunder (2017–2018) Houston Rockets (2018) Portland Trail Blazers (2019–2021) Los Angeles Lakers (2021–2022)28289126022.510119173163201984USA
10Kevin DurantSF/PFSeattle SuperSonics/Oklahoma City Thunder (2007–2016) Golden State Warriors (2016–2019) Brooklyn Nets (2019–2023) Phoenix Suns (2023–present)27481100527.394011907677219881USA

CREATE TABLE nba (
  "rank" BIGINT,
  "player" VARCHAR,
  "position" VARCHAR,
  "teams" VARCHAR,
  "total_points" BIGINT,
  "total_games" BIGINT,
  "points_per_game" DOUBLE,
  "field_goals" BIGINT,
  "three_points_goals" BIGINT,
  "free_shots" BIGINT,
  "born" VARCHAR,
  "active_player" BIGINT,
  "hall_of_fame" DOUBLE,
  "country" VARCHAR
);

Share link

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