Baselight

Olympic Games Medals Breakdown, 1896-2022

A dataset of all medals won in summer and winter Olympic Games

@kaggle.amirba_olympic_sports_and_medals_18962021

Winter
@kaggle.amirba_olympic_sports_and_medals_18962021.winter

  • 46.25 KB
  • 3601 rows
  • 9 columns
year

Year

city

City

sport

Sport

discipline

Discipline

country

Country

gender

Gender

event

Event

medal

Medal

athlete

Athlete

1924ChamonixBiathlonBiathlonFINMenMilitary PatrolSilverFIN
1924ChamonixBiathlonBiathlonFRAMenMilitary PatrolBronzeFRA
1924ChamonixBiathlonBiathlonSUIMenMilitary PatrolGoldSUI
1924ChamonixBobsleighBobsleighBELMenFour-ManBronzeBEL
1924ChamonixBobsleighBobsleighGBRMenFour-ManSilverGBR
1924ChamonixBobsleighBobsleighSUIMenFour-ManGoldSUI
1924ChamonixCurlingCurlingFRAMenCurlingBronzeFRA
1924ChamonixCurlingCurlingGBRMenCurlingGoldGBR
1924ChamonixCurlingCurlingSWEMenCurlingSilverSWE
1924ChamonixIce HockeyIce HockeyCANMenIce HockeyGoldCAN

CREATE TABLE winter (
  "year" BIGINT,
  "city" VARCHAR,
  "sport" VARCHAR,
  "discipline" VARCHAR,
  "country" VARCHAR,
  "gender" VARCHAR,
  "event" VARCHAR,
  "medal" VARCHAR,
  "athlete" VARCHAR
);

Share link

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