Baselight

IPL 2024 Players Auction Stats

A Look into IPL 2024 Players Auction Data

@kaggle.sandeepmistry2004_ipl_2024_players_auction_stats

Auction
@kaggle.sandeepmistry2004_ipl_2024_players_auction_stats.auction

  • 5.63 KB
  • 72 rows
  • 5 columns
player

PLAYER

nationality

NATIONALITY

type

TYPE

team

TEAM

price_paid

PRICE PAID

Daryl MitchellOverseasAll-RounderChennai Super Kings140000000
Sameer RizviIndianBatterChennai Super Kings84000000
Shardul ThakurIndianAll-RounderChennai Super Kings40000000
Mustafizur RahmanOverseasBowlerChennai Super Kings20000000
Rachin RavindraOverseasAll-RounderChennai Super Kings18000000
Avanish Rao AravellyIndianWicket-KeeperChennai Super Kings2000000
Kumar KushagraIndianWicket-KeeperDelhi Capitals72000000
Jhye RichardsonOverseasBowlerDelhi Capitals50000000
Harry BrookOverseasBatterDelhi Capitals40000000
Sumit KumarIndianAll-RounderDelhi Capitals10000000

CREATE TABLE auction (
  "player" VARCHAR,
  "nationality" VARCHAR,
  "type" VARCHAR,
  "team" VARCHAR,
  "price_paid" BIGINT
);