FIFA World Cup All Dataset
FIFA Tournament Information
@kaggle.abhijitdahatonde_fifa_world_cup_all_dataset
FIFA Tournament Information
@kaggle.abhijitdahatonde_fifa_world_cup_all_dataset
This dataset contains comprehensive historical information about the FIFA World Cup, the premier international football (soccer) tournament organized by FIFA (Fédération International de Football Association). The dataset spans multiple decades and covers various aspects of the tournament, including match results, player statistics, team details, and other relevant information related to the tournament.
CREATE TABLE international_matches1 (
"id" BIGINT,
"tournament" VARCHAR,
"date" TIMESTAMP,
"home_team" VARCHAR,
"away_team" VARCHAR,
"home_goals" BIGINT,
"away_goals" BIGINT,
"home_stadium_or_not" BIGINT
);CREATE TABLE n_2022_world_cup_matches1 (
"id" BIGINT,
"year" BIGINT,
"stage" VARCHAR,
"home_team" VARCHAR,
"away_team" VARCHAR
);CREATE TABLE world_cup_matches1 (
"id" BIGINT,
"year" BIGINT,
"stage" VARCHAR,
"home_team" VARCHAR,
"home_goals" BIGINT,
"away_goals" BIGINT,
"away_team" VARCHAR,
"host_team_or_not" BIGINT
);CREATE TABLE world_cups1 (
"year" BIGINT,
"host_country" VARCHAR,
"winner" VARCHAR,
"runners_up" VARCHAR,
"third" VARCHAR,
"fourth" VARCHAR,
"goals_scored" BIGINT,
"matches_played" BIGINT,
"qualified_teams" BIGINT
);Anyone who has the link will be able to view this.