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
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 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 gold_comb (
"year" BIGINT,
"country" VARCHAR,
"type" VARCHAR
);
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.