Olympics
Olympic Events 1896-2016
@kaggle.harshvgh_olympics
Olympic Events 1896-2016
@kaggle.harshvgh_olympics
This dataset contain detailed records of the Olympic events and the athlete's who participated in them from year 1896 to 2016. Each row in the dataset represents an individual athlete and includes various attributes related to their personal information, the country they represent, the specifics of the Olympic event they participated in, and the outcomes they achieved. Below is a description of the columns included in the dataset:
CREATE TABLE athlete_events (
"id" BIGINT,
"name" VARCHAR,
"gender" VARCHAR,
"age" DOUBLE,
"height" DOUBLE,
"weight" DOUBLE,
"team" VARCHAR,
"noc" VARCHAR,
"games" VARCHAR,
"year" BIGINT,
"season" VARCHAR,
"city" VARCHAR,
"sport" VARCHAR,
"event" VARCHAR,
"medal" VARCHAR
);CREATE TABLE noc_regions (
"noc" VARCHAR,
"region" VARCHAR,
"notes" VARCHAR
);Anyone who has the link will be able to view this.