Baselight

A Comprehensive Database On The FIFA World Cup

Data on teams, players, managers, refs, matches, goals, cards, subs, and more!

@kaggle.joshfjelstul_world_cup_database

Host Countries
@kaggle.joshfjelstul_world_cup_database.host_countries

  • 6.05 KB
  • 22 rows
  • 7 columns
key_id

Key Id

tournament_id

Tournament Id

tournament_name

Tournament Name

team_id

Team Id

team_name

Team Name

team_code

Team Code

performance

Performance

1WC-19301930 FIFA World CupT-80UruguayURYchampions
2WC-19341934 FIFA World CupT-39ItalyITAchampions
3WC-19381938 FIFA World CupT-28FranceFRAquater-finals
4WC-19501950 FIFA World CupT-09BrazilBRArunners-up
5WC-19541954 FIFA World CupT-72SwitzerlandCHEquarter-final
6WC-19581958 FIFA World CupT-71SwedenSWErunners-up
7WC-19621962 FIFA World CupT-13ChileCHLthird place
8WC-19661966 FIFA World CupT-27EnglandENGchampions
9WC-19701970 FIFA World CupT-44MexicoMEXquater-finals
10WC-19741974 FIFA World CupT-82West GermanyDEUchampions

CREATE TABLE host_countries (
  "key_id" BIGINT,
  "tournament_id" VARCHAR,
  "tournament_name" VARCHAR,
  "team_id" VARCHAR,
  "team_name" VARCHAR,
  "team_code" VARCHAR,
  "performance" VARCHAR
);