All T20 Internationals Dataset (2005 - 2024)
Comprehensive Records of T20 International Cricket Matches from 2005 Onwards
@kaggle.bhuvaneshprasad_all_t20_internationals_dataset_2005_to_2023
Comprehensive Records of T20 International Cricket Matches from 2005 Onwards
@kaggle.bhuvaneshprasad_all_t20_internationals_dataset_2005_to_2023
This extensive dataset serves as a comprehensive repository of historical information regarding T20 International (T20I) cricket matches dating back to the inception of the format. T20I cricket is renowned for its thrilling encounters, and this dataset meticulously documents the particulars of these matches. It stands as a valuable resource for cricket enthusiasts, statisticians, and analysts eager to delve into and dissect T20I cricket data.
Key Features:
Potential Use Cases:
Whether you're a passionate cricket fan seeking to relive the excitement of classic T20I matches or an analyst in pursuit of insights, this dataset is a veritable treasure trove of T20I cricket history.
Embark on a journey through the world of T20I cricket, unravel the statistics, and savor the thrill of cricket matches spanning two decades!
CREATE TABLE players_info (
"player_id" BIGINT,
"player_object_id" BIGINT,
"player_name" VARCHAR,
"dob" TIMESTAMP,
"dod" TIMESTAMP,
"gender" VARCHAR,
"batting_style" VARCHAR,
"bowling_style" VARCHAR,
"country_id" DOUBLE,
"image_url" VARCHAR,
"image_metadata" VARCHAR
);
CREATE TABLE t20i_batting_card (
"match_id" BIGINT,
"innings" BIGINT,
"team" VARCHAR,
"batsman" DOUBLE,
"runs" DOUBLE,
"balls" DOUBLE,
"fours" DOUBLE,
"sixes" DOUBLE,
"strikerate" DOUBLE,
"isout" VARCHAR,
"wickettype" VARCHAR,
"fielders" VARCHAR,
"bowler" DOUBLE
);
CREATE TABLE t20i_bowling_card (
"match_id" BIGINT,
"innings" BIGINT,
"team" VARCHAR,
"opposition" VARCHAR,
"bowler_id" DOUBLE,
"overs" DOUBLE,
"balls" DOUBLE,
"maidens" DOUBLE,
"conceded" DOUBLE,
"wickets" DOUBLE,
"economy" DOUBLE,
"dots" DOUBLE,
"fours" DOUBLE,
"sixes" DOUBLE,
"wides" DOUBLE,
"noballs" DOUBLE
);
CREATE TABLE t20i_fow_card (
"match_id" BIGINT,
"innings" BIGINT,
"team" VARCHAR,
"player" DOUBLE,
"wicket" DOUBLE,
"over" DOUBLE,
"runs" DOUBLE
);
CREATE TABLE t20i_matches_data (
"t20i_match_no" BIGINT,
"match_id" BIGINT,
"match_name" VARCHAR,
"series_id" BIGINT,
"series_name" VARCHAR,
"match_date" TIMESTAMP,
"match_format" VARCHAR,
"team1_id" BIGINT,
"team1_name" VARCHAR,
"team1_captain" BIGINT,
"team1_runs_scored" DOUBLE,
"team1_wickets_fell" DOUBLE,
"team1_extras_rec" DOUBLE,
"team2_id" BIGINT,
"team2_name" VARCHAR,
"team2_captain" BIGINT,
"team2_runs_scored" DOUBLE,
"team2_wickets_fell" DOUBLE,
"team2_extras_rec" DOUBLE,
"match_venue_stadium" VARCHAR -- Match Venue (Stadium),
"match_venue_city" VARCHAR -- Match Venue (City),
"match_venue_country" VARCHAR -- Match Venue (Country),
"umpire_1" VARCHAR,
"umpire_2" VARCHAR,
"match_referee" VARCHAR,
"toss_winner" VARCHAR,
"toss_winner_choice" VARCHAR,
"match_winner" VARCHAR,
"match_result_text" VARCHAR,
"mom_player" DOUBLE,
"team1_playing_11" VARCHAR,
"team2_playing_11" VARCHAR,
"debut_players" VARCHAR
);
CREATE TABLE t20i_partnership_card (
"match_id" BIGINT,
"innings" BIGINT,
"for_wicket" DOUBLE,
"team" VARCHAR,
"opposition" VARCHAR,
"player1" DOUBLE,
"player2" DOUBLE,
"player1_runs" DOUBLE,
"player2_runs" DOUBLE,
"player1_balls" DOUBLE,
"player2_balls" DOUBLE,
"partnership_runs" DOUBLE,
"partnership_balls" DOUBLE
);
Anyone who has the link will be able to view this.