Tokyo 2020 Olympics Medals
Medal Counts of Countries in Tokyo 2020 Olympics
@kaggle.harshmerchant_tokyo_2020_olympics_medals
Medal Counts of Countries in Tokyo 2020 Olympics
@kaggle.harshmerchant_tokyo_2020_olympics_medals
This dataset provides the medal counts for each country that participated in the Tokyo 2020 Summer Olympics. It includes the number of gold, silver, and bronze medals won by each country, along with the total medal count and rank of the country based on total medal count.
CREATE TABLE medals (
"country" VARCHAR,
"gold" BIGINT,
"silver" BIGINT,
"bronze" BIGINT,
"total" BIGINT,
"rank_by_total" BIGINT,
"continent" VARCHAR
);Anyone who has the link will be able to view this.