Baselight

Olympic Medal Data (Summer+Winter)

Exploring Olympic Medal History: All-Time Winners (Summer & Winter)

@kaggle.parthdande_olympic_medal_data_summer_winter

Olympic Medal Data
@kaggle.parthdande_olympic_medal_data_summer_winter.olympic_medal_data

  • 16.65 KB
  • 157 rows
  • 14 columns
unnamed_0

Unnamed: 0

team

Team

summer_gold

Summer Gold

summer_silver

Summer Silver

summer_bronze

Summer Bronze

summer_tot

Summer Tot

winter_gold

Winter Gold

winter_silver

Winter Silver

winter_bronze

Winter Bronze

winter_total

Winter Total

combined_gold

Combined Gold

combined_silver

Combined Silver

combined_bronze

Combined Bronze

combined_total

Combined Total

Total Medals54605429589216781117111691160350066316598705220281
1United States106183073826291141219533011759518332959
2Soviet Union39531929610107857591944733763551204
3Great Britain2843183149161251734296323331950
4China26319917463622322377285231197713
5France223251277751414255138264293332889
6Italy217188213618424356141259231269759
7Germany2012072476551049865267305305312922
8Hungary18115417651122610183156182521
9Japan16915017849717293076186179208573

CREATE TABLE olympic_medal_data (
  "unnamed_0" BIGINT,
  "team" VARCHAR,
  "summer_gold" BIGINT,
  "summer_silver" BIGINT,
  "summer_bronze" BIGINT,
  "summer_tot" BIGINT,
  "winter_gold" BIGINT,
  "winter_silver" BIGINT,
  "winter_bronze" BIGINT,
  "winter_total" BIGINT,
  "combined_gold" BIGINT,
  "combined_silver" BIGINT,
  "combined_bronze" BIGINT,
  "combined_total" BIGINT
);

Share link

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