Baselight

Winter Olympics (1924 - 2018)

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

@kaggle.leminhnguyen_winter_olympics_1924_2018

Olympic Events
@kaggle.leminhnguyen_winter_olympics_1924_2018.olympic_events

  • 8.58 KB
  • 23 rows
  • 10 columns
event_city

Event City

event_country

Event Country

event_number

Event Number

event_year

Event Year

opening_ceremony

Opening Ceremony

closing_ceremony

Closing Ceremony

n_participants

N Participants

n_countries

N Countries

n_medals

N Medals

n_disciplines

N Disciplines

ChamonixFranceI 192424 January5 February31219 countries1710
Sankt MoritzSwitzerlandII 192811 February17 February46025 countries148
Lake PlacidUnited StatesIII 19324 February13 February25117 countries147
Garmisch-PartenkirchenGermanyIV 19366 February16 February66928 countries178
Sankt MoritzSwitzerlandV 194830 January8 February66728 countries229
OsloNorwayVI 195215 February25 February69430 countries228
Cortina d'AmpezzoItalyVII 195626 January5 February82132 countries248
Squaw ValleyUnited StatesVIII 196018 February28 February66530 countries278
InnsbruckAustriaIX 196429 January9 February109436 countries3410
GrenobleFranceX 19686 February18 February116037 countries3510

CREATE TABLE olympic_events (
  "event_city" VARCHAR,
  "event_country" VARCHAR,
  "event_number" VARCHAR,
  "event_year" BIGINT,
  "opening_ceremony" VARCHAR,
  "closing_ceremony" VARCHAR,
  "n_participants" BIGINT,
  "n_countries" VARCHAR,
  "n_medals" BIGINT,
  "n_disciplines" BIGINT
);

Share link

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