Baselight

Olympic Games

Countries and medals from 1896 to 2022

@kaggle.andreinovikov_olympic_games

Olympic Games
@kaggle.andreinovikov_olympic_games.olympic_games

  • 17.21 KB
  • 1781 rows
  • 11 columns
year

Year

games_type

Games Type

host_country

Host Country

host_city

Host City

athletes

Athletes

teams

Teams

competitions

Competitions

country

Country

gold

Gold

silver

Silver

bronze

Bronze

2022WinterChinaBeijing283491109Australia121
2022WinterChinaBeijing283491109Austria774
2022WinterChinaBeijing283491109Belarus2
2022WinterChinaBeijing283491109Belgium11
2022WinterChinaBeijing283491109Canada4814
2022WinterChinaBeijing283491109Czechia11
2022WinterChinaBeijing283491109Estonia1
2022WinterChinaBeijing283491109Finland224
2022WinterChinaBeijing283491109France572
2022WinterChinaBeijing283491109Germany12105

CREATE TABLE olympic_games (
  "year" BIGINT,
  "games_type" VARCHAR,
  "host_country" VARCHAR,
  "host_city" VARCHAR,
  "athletes" BIGINT,
  "teams" BIGINT,
  "competitions" BIGINT,
  "country" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT
);

Share link

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