Womens Premier League 2023 (WPL) Dataset
Comprehensive Insights for Team Strategies and Player Performances
@kaggle.adnansattikar_womenspremierleague2023
Comprehensive Insights for Team Strategies and Player Performances
@kaggle.adnansattikar_womenspremierleague2023
CREATE TABLE batting_summary (
"match" VARCHAR,
"teaminnings" VARCHAR,
"battingpos" BIGINT,
"battername" VARCHAR,
"runs" BIGINT,
"balls" BIGINT,
"n_4s" BIGINT,
"n_6s" BIGINT,
"sr" VARCHAR,
"out_not_out" VARCHAR,
"matchid" VARCHAR
);
CREATE TABLE bowling_summary (
"match" VARCHAR,
"bowlingteam" VARCHAR,
"bowlername" VARCHAR,
"overs" DOUBLE,
"maiden" BIGINT,
"runs" BIGINT,
"wickets" BIGINT,
"economy" DOUBLE,
"n_0s" BIGINT,
"n_4s" BIGINT,
"n_6s" BIGINT,
"wides" BIGINT,
"noballs" BIGINT,
"matchid" VARCHAR
);
CREATE TABLE match_summary (
"team1" VARCHAR,
"team2" VARCHAR,
"winner" VARCHAR,
"margin" VARCHAR,
"ground" VARCHAR,
"matchdate" TIMESTAMP,
"matchid" VARCHAR
);
CREATE TABLE player_info (
"name" VARCHAR,
"team" VARCHAR,
"battingstyle" VARCHAR,
"bowlingstyle_wk" VARCHAR,
"playingrole" VARCHAR,
"image" VARCHAR,
"unnamed_6" VARCHAR,
"unnamed_7" VARCHAR
);
Anyone who has the link will be able to view this.