Baselight

IPL 2024 SOLD PLAYERS + TOP BUYS + UNSOLD PLAYERS

INDIAN PREMIER LEAGUE 2024 Lets explore

@kaggle.prajwaldongre_ipl_players_sold_2024

Loading...
Loading...

About this Dataset

IPL 2024 SOLD PLAYERS + TOP BUYS + UNSOLD PLAYERS

There are 3 csv files:-

  • 1. IPL PLAYERS:- This file contains, player name, their nationality, their playing type, their sold price and which team bought them.
  • 2. TOP BUYS:- Top Players bought by the Team.
  • 3. UNSOLD PLAYERS:- The players which remain unsold in auction.

Tables

Ipl Players

@kaggle.prajwaldongre_ipl_players_sold_2024.ipl_players
  • 5.52 kB
  • 72 rows
  • 5 columns
Loading...
CREATE TABLE ipl_players (
  "players" VARCHAR,
  "nationality" VARCHAR,
  "type" VARCHAR,
  "price_paid" BIGINT,
  "team" VARCHAR
);

Top Buys

@kaggle.prajwaldongre_ipl_players_sold_2024.top_buys
  • 3.84 kB
  • 10 rows
  • 4 columns
Loading...
CREATE TABLE top_buys (
  "team" VARCHAR,
  "nationality" VARCHAR,
  "type" VARCHAR,
  "price_paid" BIGINT
);

Unsold Players

@kaggle.prajwaldongre_ipl_players_sold_2024.unsold_players
  • 7.42 kB
  • 260 rows
  • 4 columns
Loading...
CREATE TABLE unsold_players (
  "player" VARCHAR,
  "nationality" VARCHAR,
  "type" VARCHAR,
  "base_price" BIGINT
);

Share link

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