IPL 2022 Match Dataset
Tata IPL 2022 Ball By Ball and Match Info Data
@kaggle.vora1011_ipl_2022_match_dataset
Tata IPL 2022 Ball By Ball and Match Info Data
@kaggle.vora1011_ipl_2022_match_dataset
About this Dataset
Tata IPL is among the most famous cricket league with players coming from worldwide. What makes this series more competitive this year is the auction resulting in all players changing their squad and two new teams added to the league. With IPL starting on 26th March 2022 this year, this dataset is a complete dataset showing match information and also data for each delivery. This dataset will be updated daily with data of the matches coming every day.
Datasource: Cricsheet
Image Credits
CREATE TABLE ipl_ball_by_ball_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_2022 (
"id" BIGINT,
"city" VARCHAR,
"date" TIMESTAMP,
"season" BIGINT,
"matchnumber" VARCHAR,
"team1" VARCHAR,
"team2" VARCHAR,
"venue" VARCHAR,
"tosswinner" VARCHAR,
"tossdecision" VARCHAR,
"superover" VARCHAR,
"winningteam" VARCHAR,
"wonby" VARCHAR,
"margin" BIGINT,
"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.