World Cup
Data from all World Cup matches between 1930-2014, by athlete.
@kaggle.mysarahmadbhat_world_cup
Data from all World Cup matches between 1930-2014, by athlete.
@kaggle.mysarahmadbhat_world_cup
CREATE TABLE worldcupmatches (
"year" BIGINT,
"datetime" TIMESTAMP,
"stage" VARCHAR,
"stadium" VARCHAR,
"city" VARCHAR,
"home_team_name" VARCHAR,
"home_team_goals" BIGINT,
"away_team_goals" BIGINT,
"away_team_name" VARCHAR,
"win_conditions" VARCHAR,
"attendance" DOUBLE,
"half_time_home_goals" BIGINT,
"half_time_away_goals" BIGINT,
"referee" VARCHAR,
"assistant_1" VARCHAR,
"assistant_2" VARCHAR,
"roundid" BIGINT,
"matchid" BIGINT,
"home_team_initials" VARCHAR,
"away_team_initials" VARCHAR
);
CREATE TABLE worldcupplayers (
"roundid" BIGINT,
"matchid" BIGINT,
"team_initials" VARCHAR,
"coach_name" VARCHAR,
"line_up" VARCHAR,
"shirt_number" BIGINT,
"player_name" VARCHAR,
"position" VARCHAR,
"event" VARCHAR
);
CREATE TABLE worldcups_preview (
"year" BIGINT,
"country" VARCHAR,
"winner" VARCHAR,
"runners_up" VARCHAR,
"third" VARCHAR,
"fourth" VARCHAR,
"goalsscored" BIGINT,
"qualifiedteams" BIGINT,
"matchesplayed" BIGINT,
"attendance" VARCHAR
);
Anyone who has the link will be able to view this.