Baselight

2021 Paralympic Games In Tokyo

Data on Medals, Athletes, Coaches, Disciplines, and Medalists

@kaggle.alexkoshchii_2021_paralympic_games_in_tokyo

Medals
@kaggle.alexkoshchii_2021_paralympic_games_in_tokyo.medals

  • 7.38 KB
  • 86 rows
  • 7 columns
rank

Rank

team_npc

Team/NPC

gold

Gold

silver

Silver

bronze

Bronze

total

Total

rank_by_total

Rank By Total

1People's Republic of China9660512071
2Great Britain4138451242
3United States of America3736311044
4RPC3633491183
5Netherlands251717599
6Ukraine244727985
7Brazil222030727
8Australia212930806
9Italy142926698
10Azerbaijan14141920

CREATE TABLE medals (
  "rank" BIGINT,
  "team_npc" 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.