T20 World Cup 2024 Data
Matchwise Data for T20 World Cup 2024
@kaggle.codingmukul_t20_world_cup_2024_data
Matchwise Data for T20 World Cup 2024
@kaggle.codingmukul_t20_world_cup_2024_data
This data has been scraped from espncricinfo and icc-cricket. Images and logos are scraped from icc-cricket and other data is completely scraped from espncricinfo. This dataset contains the records of all the scorecards from the T20 world cup 2024. I have used it to make a power bi report. Here is the demo: https://drive.google.com/file/d/1oC22rUVxt6Tr3iJJ7CQzr73csmGO4whv/view?usp=drive_link
CREATE TABLE battingsummary (
"balls" BIGINT,
"battingorder" BIGINT,
"country" VARCHAR,
"fours" BIGINT,
"matchid" VARCHAR,
"minutes" VARCHAR,
"name" VARCHAR,
"outmethod" VARCHAR,
"runs" BIGINT,
"sr" VARCHAR,
"sixes" BIGINT
);CREATE TABLE bowlingsummary (
"country" VARCHAR,
"economy" DOUBLE,
"maiden" BIGINT,
"matchid" VARCHAR,
"name" VARCHAR,
"oversbowled" DOUBLE,
"runs" BIGINT,
"wickets" BIGINT,
"dots" BIGINT,
"fours" BIGINT,
"noballs" BIGINT,
"sixes" BIGINT,
"wides" BIGINT
);CREATE TABLE matchdetails (
"matchid" VARCHAR,
"name" VARCHAR,
"tossresult" VARCHAR
);CREATE TABLE playerdetails (
"age" VARCHAR,
"batting" VARCHAR,
"bowling" VARCHAR,
"cap" VARCHAR,
"country" VARCHAR,
"name" VARCHAR,
"role" VARCHAR
);CREATE TABLE playerimages (
"name" VARCHAR,
"image" VARCHAR
);CREATE TABLE teamlogos (
"country" VARCHAR,
"image" VARCHAR
);Anyone who has the link will be able to view this.