ICC Women's T20 World Cup 2023 Dataset
This dataset has data of all the matches played in women's t20 world cup.
@kaggle.shubhamshrimant_icc_womens_t20_world_cup_2023_dataset
This dataset has data of all the matches played in women's t20 world cup.
@kaggle.shubhamshrimant_icc_womens_t20_world_cup_2023_dataset
This dataset contains the latest match-wise data of the ICC Women's World Cup 2023 held in South Africa.
Columns are:
Match_id - rank of the match as it happened
Date - Date of match
Team_1 - self-explanatory
Team_2 - self-explanatory
Venue - Stadium's name
Stage- Group/Semi-final/Final
Toss_winner - The team who won the toss
Toss_decision - What team decided after winning the toss (Bat/Bowl first)
First_innings_score - Score of 1st innings
First_innings_wkts - wickets of 1st innings
First_innings_overs- Overs played by the team in 1st innings
Second_innings_score- Score of 12nd innings
Second_innings_wkts- wickets of 2ndinnings
Second_innings_overs- Overs played by the team in 2nd innings
Winner- self-explanatory
Player_of_the_match- self-explanatory
CREATE TABLE icc_womens_t20_world_cup_2023 (
"match_id" BIGINT,
"date" VARCHAR,
"team_1" VARCHAR,
"team_2" VARCHAR,
"n__venue" VARCHAR -- Venue,
"stage" VARCHAR,
"toss_winner" VARCHAR,
"toss_decision" VARCHAR,
"first_innings_score" BIGINT,
"first_innings_wkts" BIGINT,
"first_innings_overs" DOUBLE,
"second_innings_score" BIGINT,
"second_innings_wkts" BIGINT,
"second_innings_overs" DOUBLE,
"winner" VARCHAR,
"player_of_the_match" VARCHAR
);Anyone who has the link will be able to view this.