Baselight

Historical : FIFA World Cups 10+ Award Winners

Winners of 10+ FIFA World Cup Awards since 1930

@kaggle.pranav941_historical_fifa_world_cups_10_awards

Loading...
Loading...

About this Dataset

Historical : FIFA World Cups 10+ Award Winners

The FIFA World Cup, often simply called the World Cup, is an international association football competition contested by the senior men's national teams of the members of the Fédération Internationale de Football Association (FIFA), the sport's global governing body. The tournament has been held every four years since the inaugural tournament in 1930, except in 1942 and 1946 when it was not held because of the Second World War. The reigning champions are Argentina, who won their third title at the 2022 tournament, in Qatar.
-Wiki

This dataset lists all the Winners since 1930 of :-

  1. FIFA World Cup
  2. Golden Boot
  3. Silver Boot
  4. Bronze Boot
  5. Golden Ball
  6. Silver Ball
  7. Bronze Ball
  8. Golden Glove
  9. FIFA Best young player
  10. FIFA Fair Play Award

Tables

Fair Play

@kaggle.pranav941_historical_fifa_world_cups_10_awards.fair_play
  • 3 KB
  • 16 rows
  • 3 columns
Loading...

CREATE TABLE fair_play (
  "world_cup" VARCHAR,
  "year" BIGINT,
  "winner" VARCHAR
);

Fifa Winners

@kaggle.pranav941_historical_fifa_world_cups_10_awards.fifa_winners
  • 7.13 KB
  • 22 rows
  • 8 columns
Loading...

CREATE TABLE fifa_winners (
  "year" BIGINT,
  "champion" VARCHAR,
  "second" VARCHAR,
  "third" VARCHAR,
  "host" VARCHAR,
  "teams" BIGINT,
  "matches" BIGINT,
  "goals" BIGINT
);

Golden Glove

@kaggle.pranav941_historical_fifa_world_cups_10_awards.golden_glove
  • 5.02 KB
  • 8 rows
  • 6 columns
Loading...

CREATE TABLE golden_glove (
  "year" BIGINT,
  "winner" VARCHAR,
  "country" VARCHAR,
  "matches" DOUBLE,
  "goals_conceded" DOUBLE,
  "clean_sheets" BIGINT
);

Goldesilverbronze Ball By Player

@kaggle.pranav941_historical_fifa_world_cups_10_awards.goldesilverbronze_ball_by_player
  • 7.15 KB
  • 11 rows
  • 4 columns
Loading...

CREATE TABLE goldesilverbronze_ball_by_player (
  "world_cup" VARCHAR,
  "golden_ball" VARCHAR,
  "silver_ball" VARCHAR,
  "bronze_ball" VARCHAR
);

Goldsilverbronze Ball By Country

@kaggle.pranav941_historical_fifa_world_cups_10_awards.goldsilverbronze_ball_by_country
  • 5.13 KB
  • 13 rows
  • 5 columns
Loading...

CREATE TABLE goldsilverbronze_ball_by_country (
  "nation" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT
);

Goldsilverbronze Boot By Country

@kaggle.pranav941_historical_fifa_world_cups_10_awards.goldsilverbronze_boot_by_country
  • 4.79 KB
  • 17 rows
  • 6 columns
Loading...

CREATE TABLE goldsilverbronze_boot_by_country (
  "country" VARCHAR,
  "continent" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT
);

Gold Comb

@kaggle.pranav941_historical_fifa_world_cups_10_awards.gold_comb
  • 2.96 KB
  • 47 rows
  • 3 columns
Loading...

CREATE TABLE gold_comb (
  "year" BIGINT,
  "country" VARCHAR,
  "type" VARCHAR
);

Total Goals Scored By Winning Countries Only

@kaggle.pranav941_historical_fifa_world_cups_10_awards.total_goals_scored_by_winning_countries_only
  • 2.39 KB
  • 11 rows
  • 2 columns
Loading...

CREATE TABLE total_goals_scored_by_winning_countries_only (
  "country" VARCHAR,
  "total_goals_scored" DOUBLE
);

Young Player

@kaggle.pranav941_historical_fifa_world_cups_10_awards.young_player
  • 4.76 KB
  • 17 rows
  • 5 columns
Loading...

CREATE TABLE young_player (
  "world_cup" VARCHAR,
  "year" BIGINT,
  "country" VARCHAR,
  "fifa_young_player" VARCHAR,
  "age" BIGINT
);

Share link

Anyone who has the link will be able to view this.