Baselight

Olympics 2024 Medals Dataset

Detailed Breakdown of Olympic Medal Counts and Team Rankings

@kaggle.munsif2mu_olympics_2024_medals_table

Olympics 2024 Medals Table
@kaggle.munsif2mu_olympics_2024_medals_table.olympics_2024_medals_table

  • 6.37 KB
  • 91 rows
  • 6 columns
ranking

Ranking

team

Team

gold

Gold

sliver

Sliver

bronzs

Bronzs

total

Total

1 United States404442126
2 China40272491
3 Japan20121345
4 Australia18191653
5 France16262264
6 Netherlands1571234
7 Great Britain14222965
8 South Korea1391032
9 Italy12131540
10 Germany1213833

CREATE TABLE olympics_2024_medals_table (
  "ranking" BIGINT,
  "team" VARCHAR,
  "gold" BIGINT,
  "sliver" BIGINT,
  "bronzs" BIGINT,
  "total" BIGINT
);

Share link

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