Indian Premier League(IPL)Data(till 2016)
IPL OLTP tables converted to a Set of CSV files
@kaggle.raghu07_ipl_datatill_2016
IPL OLTP tables converted to a Set of CSV files
@kaggle.raghu07_ipl_datatill_2016
This is the ball by ball data of all the IPL cricket matches till season 9.
(I will be coming up with season 10 data as soon as possible)
Source: http://cricsheet.org/ (data is available on this website in the YAML format. This is converted to CSV format by using R Script ,SQL,SSIS.
Research scope: Predicting the winner of the next season of IPL based on past data, Visualizations, Perspectives, etc.
CREATE TABLE ball_by_ball (
"match_id" BIGINT,
"over_id" BIGINT,
"ball_id" BIGINT,
"innings_no" BIGINT,
"team_batting" BIGINT,
"team_bowling" BIGINT,
"striker_batting_position" BIGINT,
"striker" BIGINT,
"non_striker" BIGINT,
"bowler" BIGINT
);CREATE TABLE batsman_scored (
"match_id" BIGINT,
"over_id" BIGINT,
"ball_id" BIGINT,
"runs_scored" BIGINT,
"innings_no" BIGINT
);CREATE TABLE batting_style (
"batting_id" BIGINT,
"batting_hand" VARCHAR
);CREATE TABLE bowling_style (
"bowling_id" BIGINT,
"bowling_skill" VARCHAR
);CREATE TABLE city (
"city_id" BIGINT,
"city_name" VARCHAR,
"country_id" BIGINT
);CREATE TABLE country (
"country_id" BIGINT,
"country_name" VARCHAR
);CREATE TABLE extra_runs (
"match_id" BIGINT,
"over_id" BIGINT,
"ball_id" BIGINT,
"extra_type_id" BIGINT,
"extra_runs" BIGINT,
"innings_no" BIGINT
);CREATE TABLE extra_type (
"extra_id" BIGINT,
"extra_name" VARCHAR
);CREATE TABLE match (
"match_id" BIGINT,
"team_1" BIGINT,
"team_2" BIGINT,
"match_date" TIMESTAMP,
"season_id" BIGINT,
"venue_id" BIGINT,
"toss_winner" BIGINT,
"toss_decide" BIGINT,
"win_type" BIGINT,
"win_margin" DOUBLE,
"outcome_type" BIGINT,
"match_winner" DOUBLE,
"man_of_the_match" DOUBLE
);CREATE TABLE outcome (
"outcome_id" BIGINT,
"outcome_type" VARCHAR
);CREATE TABLE out_type (
"out_id" BIGINT,
"out_name" VARCHAR
);CREATE TABLE player (
"player_id" BIGINT,
"player_name" VARCHAR,
"dob" TIMESTAMP,
"batting_hand" BIGINT,
"bowling_skill" DOUBLE,
"country_name" BIGINT
);CREATE TABLE player_match (
"match_id" BIGINT,
"player_id" BIGINT,
"role_id" BIGINT,
"team_id" BIGINT
);CREATE TABLE rolee (
"role_id" BIGINT,
"role_desc" VARCHAR
);CREATE TABLE season (
"season_id" BIGINT,
"man_of_the_series" BIGINT,
"orange_cap" BIGINT,
"purple_cap" BIGINT,
"season_year" BIGINT
);CREATE TABLE team (
"team_id" BIGINT,
"team_name" VARCHAR
);CREATE TABLE toss_decision (
"toss_id" BIGINT,
"toss_name" VARCHAR
);CREATE TABLE wicket_taken (
"match_id" BIGINT,
"over_id" BIGINT,
"ball_id" BIGINT,
"player_out" BIGINT,
"kind_out" BIGINT,
"fielders" DOUBLE,
"innings_no" BIGINT
);CREATE TABLE win_by (
"win_id" BIGINT,
"win_type" VARCHAR
);Anyone who has the link will be able to view this.