Baselight

Winter Olympics (1924 - 2018)

This dataset contains the data of all the past Winter Olympic events

@kaggle.leminhnguyen_winter_olympics_1924_2018

Events Medals
@kaggle.leminhnguyen_winter_olympics_1924_2018.events_medals

  • 7.6 KB
  • 410 rows
  • 7 columns
event_number

Event Number

event_year

Event Year

country

Country

gold

Gold

silver

Silver

bronze

Bronze

total

Total

III 1932United States64212
III 1932Norway34310
III 1932Sweden123
III 1932Canada1157
III 1932Finland1113
III 1932Austria112
III 1932France11
III 1932Switzerland11
III 1932Germany22
III 1932Hungary11

CREATE TABLE events_medals (
  "event_number" VARCHAR,
  "event_year" BIGINT,
  "country" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT
);

Share link

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