Countries Olympics Medals Since 1896
Countries performance in both Olympics combined since the start
@kaggle.surajjha101_countries_olympics_medals_since_1896
Countries performance in both Olympics combined since the start
@kaggle.surajjha101_countries_olympics_medals_since_1896
CREATE TABLE olympics_medals_country_wise (
"countries" VARCHAR,
"ioc_code" VARCHAR,
"summer_participations" BIGINT,
"summer_gold" BIGINT,
"summer_silver" BIGINT,
"summer_bronze" BIGINT,
"summer_total" BIGINT,
"winter_participations" BIGINT,
"winter_gold" BIGINT,
"winter_silver" BIGINT,
"winter_bronze" BIGINT,
"winter_total" BIGINT,
"total_participation" BIGINT,
"total_gold" BIGINT,
"total_silver" BIGINT,
"total_bronze" BIGINT,
"total_total" BIGINT
);
Anyone who has the link will be able to view this.