Baselight

Tokyo 2020 Olympics Dataset

Tokyo Olympics results including events, ranks and medals

@kaggle.aliaamiri_2020_summer_olympics_dataset

Tokyo Olympic Medals Official
@kaggle.aliaamiri_2020_summer_olympics_dataset.tokyo_olympic_medals_official

  • 7.39 KB
  • 93 rows
  • 7 columns
rank

Rank

country

Country

gold

Gold

silver

Silver

bronze

Bronze

total

Total

rank_by_total

Rank By Total

1United States3941331131
2China383218882
3Japan271417585
4Great Britain222122654
5Russia202823713
6Australia17722466
7Netherlands101214369
8France1012113310
9Germany101116378
10Italy101020407

CREATE TABLE tokyo_olympic_medals_official (
  "rank" BIGINT,
  "country" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT,
  "rank_by_total" BIGINT
);

Share link

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