Historical : FIFA World Cups 10+ Award Winners
Winners of 10+ FIFA World Cup Awards since 1930
@kaggle.pranav941_historical_fifa_world_cups_10_awards
Winners of 10+ FIFA World Cup Awards since 1930
@kaggle.pranav941_historical_fifa_world_cups_10_awards
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 :-
CREATE TABLE fair_play (
"world_cup" VARCHAR,
"year" BIGINT,
"winner" VARCHAR
);
CREATE TABLE fifa_winners (
"year" BIGINT,
"champion" VARCHAR,
"second" VARCHAR,
"third" VARCHAR,
"host" VARCHAR,
"teams" BIGINT,
"matches" BIGINT,
"goals" BIGINT
);
CREATE TABLE gold_comb (
"year" BIGINT,
"country" VARCHAR,
"type" VARCHAR
);
CREATE TABLE golden_glove (
"year" BIGINT,
"winner" VARCHAR,
"country" VARCHAR,
"matches" DOUBLE,
"goals_conceded" DOUBLE,
"clean_sheets" BIGINT
);
CREATE TABLE goldesilverbronze_ball_by_player (
"world_cup" VARCHAR,
"golden_ball" VARCHAR,
"silver_ball" VARCHAR,
"bronze_ball" VARCHAR
);
CREATE TABLE goldsilverbronze_ball_by_country (
"nation" VARCHAR,
"gold" BIGINT,
"silver" BIGINT,
"bronze" BIGINT,
"total" BIGINT
);
CREATE TABLE goldsilverbronze_boot_by_country (
"country" VARCHAR,
"continent" VARCHAR,
"gold" BIGINT,
"silver" BIGINT,
"bronze" BIGINT,
"total" BIGINT
);
CREATE TABLE total_goals_scored_by_winning_countries_only (
"country" VARCHAR,
"total_goals_scored" DOUBLE
);
CREATE TABLE young_player (
"world_cup" VARCHAR,
"year" BIGINT,
"country" VARCHAR,
"fifa_young_player" VARCHAR,
"age" BIGINT
);
Anyone who has the link will be able to view this.