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
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.