Baselight

2024 Olympics Medals And Economic Status

Medals count in 2024 Olympics and GDP

@kaggle.mohamedyosef101_2024_olympics_medals_and_economic_status

Olympics Economics
@kaggle.mohamedyosef101_2024_olympics_medals_and_economic_status.olympics_economics

  • 9.56 KB
  • 90 rows
  • 9 columns
country

Country

country_code

Country Code

gold

Gold

silver

Silver

bronze

Bronze

total

Total

gdp

Gdp

gdp_year

Gdp Year

population

Population

United StatesUSA40444212681695.192023334.9
ChinaCHN4027249112614.0620231410.7
JapanJPN2012134533834.392023124.5
AustraliaAUS1819165364711.77202326.6
FranceFRA1626226444460.82202368.2
NetherlandsNLD157123462536.73202317.9
Great BritainGBR1422296548866.6202368.3
South KoreaKOR139103233121.37202351.7
ItalyITA1213154038373.17202358.8
GermanyDEU121383352745.76202384.5

CREATE TABLE olympics_economics (
  "country" VARCHAR,
  "country_code" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT,
  "gdp" DOUBLE,
  "gdp_year" BIGINT,
  "population" DOUBLE
);

Share link

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