IPL Complete Dataset (2008- Till Today)
The Most Comprehensive IPL Dataset
@kaggle.colearninglounge_ipl_dataset_download_python_tableau_analysis
The Most Comprehensive IPL Dataset
@kaggle.colearninglounge_ipl_dataset_download_python_tableau_analysis
CREATE TABLE deliveries (
"match_id" BIGINT,
"season" VARCHAR,
"innings" BIGINT,
"ball" DOUBLE,
"batting_team" VARCHAR,
"bowling_team" VARCHAR,
"striker" VARCHAR,
"non_striker" VARCHAR,
"bowler" VARCHAR,
"runs_off_bat" BIGINT,
"extras" BIGINT,
"wides" DOUBLE,
"noballs" DOUBLE,
"byes" DOUBLE,
"legbyes" DOUBLE,
"penalty" DOUBLE,
"wicket_type" VARCHAR,
"player_dismissed" VARCHAR,
"other_wicket_type" VARCHAR,
"other_player_dismissed" VARCHAR,
"striker_id" VARCHAR,
"non_striker_id" VARCHAR,
"bowler_id" VARCHAR
);
CREATE TABLE match_details (
"balls_per_over" BIGINT,
"team1" VARCHAR,
"team2" VARCHAR,
"gender" VARCHAR,
"season" VARCHAR,
"date" TIMESTAMP,
"event" VARCHAR,
"match_number" DOUBLE,
"toss_winner" VARCHAR,
"toss_decision" VARCHAR,
"player_of_match" VARCHAR,
"winner" VARCHAR,
"win_by" DOUBLE,
"match_id" BIGINT,
"winner_type" VARCHAR,
"outcome" VARCHAR,
"eliminator" VARCHAR,
"method" VARCHAR,
"date1" TIMESTAMP,
"date2" TIMESTAMP,
"venueid" VARCHAR
);
CREATE TABLE players_info_with_keys (
"name" VARCHAR,
"full_name" VARCHAR,
"birth_info" VARCHAR,
"batting_style" VARCHAR,
"bowling_style" VARCHAR,
"playing_position" VARCHAR,
"identifier" VARCHAR,
"key_cricinfo" BIGINT,
"bowling_type" VARCHAR,
"bowling_arm" VARCHAR
);
CREATE TABLE playing_11 (
"unnamed_0" BIGINT,
"match_id" BIGINT,
"team" VARCHAR,
"players" VARCHAR,
"identifier" VARCHAR,
"key_cricinfo" DOUBLE
);
CREATE TABLE venue (
"id" VARCHAR,
"venue" VARCHAR,
"city" VARCHAR
);
Anyone who has the link will be able to view this.