IPL Dataset
Indian Premier League (IPL) Dataset
@kaggle.yashsharma2003_ipl_dataset
Indian Premier League (IPL) Dataset
@kaggle.yashsharma2003_ipl_dataset
id : It indicates the unique id of match.
Season : It indicates the season in which match played.
city : It indicates the city in which match played.
date : It indicates the date in which match played.
Team1 : Name of Team1 who play match.
Team2 : Name of Team2 who play match.
toss_winner : Team that won the toss.
toss_decisions : Toss Decision taken by teams.
result : Result of Matches.
dl_applied : dl_applied.
winner : Name of Winning Team
win_by_runs : Team wining by runs
win_by_wickets : Team wining by wickets
player_of_match : players name
venue : venue of matches
umpire1 : Name of Umpire1
umpire2 : Name of Umpire2
umpire3 : Name of Umpire3
win_the_match : Win/Loose the match
CREATE TABLE ipl_matches_dataset (
"id" BIGINT,
"season" VARCHAR,
"city" VARCHAR,
"date" VARCHAR,
"team1" VARCHAR,
"team2" VARCHAR,
"toss_winner" VARCHAR,
"toss_decision" VARCHAR,
"result" VARCHAR,
"dl_applied" BIGINT,
"winner" VARCHAR,
"win_by_runs" BIGINT,
"win_by_wickets" BIGINT,
"player_of_match" VARCHAR,
"venue" VARCHAR,
"umpire1" VARCHAR,
"umpire2" VARCHAR,
"umpire3" VARCHAR,
"win_the_match" VARCHAR
);Anyone who has the link will be able to view this.