Cricket World Cup 2023
For beginners to explore and learn sports analytics
@kaggle.maulikpatel1930_cricket_world_cup_2023
For beginners to explore and learn sports analytics
@kaggle.maulikpatel1930_cricket_world_cup_2023
CREATE TABLE cwc2023 (
"match_id" BIGINT,
"match_date" VARCHAR,
"match_time" VARCHAR,
"city" VARCHAR,
"stadium" VARCHAR,
"team_a" VARCHAR,
"team_b" VARCHAR,
"toss_winner" VARCHAR,
"toss_decision" VARCHAR,
"score_a" BIGINT,
"wickets_a" BIGINT,
"overs_played_a" DOUBLE,
"maiden_overs_a" BIGINT,
"n_4s_a" BIGINT,
"n_6s_a" BIGINT,
"boundaries_a" BIGINT,
"runrate_a" DOUBLE,
"leg_byes_a" BIGINT,
"byes_a" BIGINT,
"wides_a" BIGINT,
"no_balls_a" BIGINT,
"penalty_a" BIGINT,
"extras_a" BIGINT,
"score_b" BIGINT,
"wickets_b" BIGINT,
"overs_played_b" DOUBLE,
"maiden_overs_b" BIGINT,
"n_4s_b" BIGINT,
"n_6s_b" BIGINT,
"boundaries_b" BIGINT,
"runrate_b" DOUBLE,
"leg_byes_b" BIGINT,
"byes_b" BIGINT,
"wides_b" BIGINT,
"no_balls_b" BIGINT,
"penalty_b" BIGINT,
"extras_b" BIGINT,
"wining_team" VARCHAR,
"margin" VARCHAR,
"man_of_the_match" VARCHAR,
"umpire_1" VARCHAR,
"umpire_2" VARCHAR,
"tv_umpire" VARCHAR,
"match_refree" VARCHAR
);
Anyone who has the link will be able to view this.