Commonwealth Games 2022
Medal Standings, Event Schedule, Athlete details and more...
@kaggle.varunnagpalspyz_commonwealth_games_2022
Medal Standings, Event Schedule, Athlete details and more...
@kaggle.varunnagpalspyz_commonwealth_games_2022
CREATE TABLE countrywise_athlete_count (
"country" VARCHAR,
"athletes" BIGINT
);
CREATE TABLE event_schedule (
"unnamed_0" BIGINT -- Unnamed: 0,
"event_category" VARCHAR,
"event_subtype" VARCHAR,
"n_28ththu" VARCHAR -- 28thThu,
"n_29thfri" VARCHAR -- 29thFri,
"n_30thsat" VARCHAR -- 30thSat,
"n_31stsun" VARCHAR -- 31stSun,
"n_1stmon" VARCHAR -- 1stMon,
"n_2ndtue" VARCHAR -- 2ndTue,
"n_3rdwed" VARCHAR -- 3rdWed,
"n_4ththu" VARCHAR -- 4thThu,
"n_5thfri" VARCHAR -- 5thFri,
"n_6thsat" VARCHAR -- 6thSat,
"n_7thsun" VARCHAR -- 7thSun,
"n_8thmon" VARCHAR -- 8thMon,
"events" VARCHAR
);
CREATE TABLE medal_standings (
"country_name" VARCHAR,
"men_gold" BIGINT,
"men_silver" BIGINT,
"men_bronze" BIGINT,
"women_gold" BIGINT,
"women_silver" BIGINT,
"women_bronze" BIGINT,
"mixed_gold" BIGINT,
"mixed_silver" BIGINT,
"mixed_bronze" BIGINT,
"total_gold" BIGINT,
"total_silver" BIGINT,
"total_bronze" BIGINT,
"total" BIGINT
);
Anyone who has the link will be able to view this.