FIFA World Cup
Dataset of every match played in FIFA World Cup history from 1930 to 2018
@kaggle.evangower_fifa_world_cup
Dataset of every match played in FIFA World Cup history from 1930 to 2018
@kaggle.evangower_fifa_world_cup
CREATE TABLE wcmatches (
"year" BIGINT,
"country" VARCHAR,
"city" VARCHAR,
"stage" VARCHAR,
"home_team" VARCHAR,
"away_team" VARCHAR,
"home_score" BIGINT,
"away_score" BIGINT,
"outcome" VARCHAR,
"win_conditions" VARCHAR,
"winning_team" VARCHAR,
"losing_team" VARCHAR,
"date" TIMESTAMP,
"month" VARCHAR,
"dayofweek" VARCHAR
);
CREATE TABLE worldcups (
"year" BIGINT,
"host" VARCHAR,
"winner" VARCHAR,
"second" VARCHAR,
"third" VARCHAR,
"fourth" VARCHAR,
"goals_scored" BIGINT,
"teams" BIGINT,
"games" BIGINT,
"attendance" BIGINT
);
Anyone who has the link will be able to view this.