IPL 2008 To 2022 All Match Dataset
IPL 2008-2022 Ball By Ball and Match Info Data
@kaggle.vora1011_ipl_2008_to_2021_all_match_dataset
IPL 2008-2022 Ball By Ball and Match Info Data
@kaggle.vora1011_ipl_2008_to_2021_all_match_dataset
About this Dataset
IPL is among the most famous cricket league with players coming from worldwide. What makes this series more competitive every year is the drama with every ball and hence this dataset is a complete dataset showing match information and also data for each delivery.
Datasource: Cricsheet
Image Credits
CREATE TABLE ipl_ball_by_ball_2008_2022 (
"id" BIGINT,
"innings" BIGINT,
"overs" BIGINT,
"ballnumber" BIGINT,
"batter" VARCHAR,
"bowler" VARCHAR,
"non_striker" VARCHAR,
"extra_type" VARCHAR,
"batsman_run" BIGINT,
"extras_run" BIGINT,
"total_run" BIGINT,
"non_boundary" BIGINT,
"iswicketdelivery" BIGINT,
"player_out" VARCHAR,
"kind" VARCHAR,
"fielders_involved" VARCHAR,
"battingteam" VARCHAR
);
CREATE TABLE ipl_matches_2008_2022 (
"id" BIGINT,
"city" VARCHAR,
"date" TIMESTAMP,
"season" VARCHAR,
"matchnumber" VARCHAR,
"team1" VARCHAR,
"team2" VARCHAR,
"venue" VARCHAR,
"tosswinner" VARCHAR,
"tossdecision" VARCHAR,
"superover" VARCHAR,
"winningteam" VARCHAR,
"wonby" VARCHAR,
"margin" DOUBLE,
"method" VARCHAR,
"player_of_match" VARCHAR,
"team1players" VARCHAR,
"team2players" VARCHAR,
"umpire1" VARCHAR,
"umpire2" VARCHAR
);
Anyone who has the link will be able to view this.