Baselight

Tokyo 2020 Olympics Medal Count

This dataset contains the medal count of the Tokyo 2020 Olympics.

@kaggle.jamieeeee_tokyo_2020_olympics_medal_count

Men Medal Count
@kaggle.jamieeeee_tokyo_2020_olympics_medal_count.men_medal_count

  • 6.2 KB
  • 80 rows
  • 6 columns
team_noc

Team/NOC

gold

Gold

silver

Silver

bronze

Bronze

total

Total

noccode

NOCCode

United States16151041USA
China1313935CHN
Great Britain12121034GBR
Japan125825JPN
ROC10111435ROC
Italy771024ITA
France74415FRA
Australia731020AUS
Cuba72413CUB
Netherlands57113NED

CREATE TABLE men_medal_count (
  "team_noc" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT,
  "noccode" VARCHAR
);

Share link

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