ODI World Cup 2023 Complete Dataset
@kaggle.enggbilalalikhan_odi_world_cup_2023_complete_dataset
@kaggle.enggbilalalikhan_odi_world_cup_2023_complete_dataset
Comprehensive dataset containing detailed information on batting and bowling performances, as well as the schedule and results of matches from the ICC Cricket World Cup 2023. The dataset covers player statistics, match details, and more, providing a rich resource for cricket enthusiasts, analysts, and data scientists interested in exploring the dynamics of the tournament.
Content
CREATE TABLE batting_summary (
"match_no" BIGINT,
"match_between" VARCHAR,
"team_innings" VARCHAR,
"batsman_name" VARCHAR,
"batting_position" BIGINT,
"dismissal" VARCHAR,
"runs" BIGINT,
"balls" BIGINT,
"n_4s" BIGINT -- 4s,
"n_6s" BIGINT -- 6s,
"strike_rate" VARCHAR
);CREATE TABLE bowling_summary (
"match_no" BIGINT,
"match_between" VARCHAR,
"bowling_team" VARCHAR,
"bowler_name" VARCHAR,
"overs" DOUBLE,
"maidens" BIGINT,
"runs" BIGINT,
"wickets" BIGINT,
"economy" DOUBLE
);CREATE TABLE match_schedule_results (
"match_no" BIGINT,
"date" VARCHAR,
"venue" VARCHAR,
"team1" VARCHAR,
"team2" VARCHAR,
"winner" VARCHAR,
"scorecard_url" VARCHAR
);CREATE TABLE world_cup_players_info (
"player_name" VARCHAR,
"team_name" VARCHAR,
"image_of_player" VARCHAR,
"battingstyle" VARCHAR,
"bowlingstyle" VARCHAR,
"playingrole" VARCHAR,
"description" VARCHAR
);Anyone who has the link will be able to view this.