Chicago Marathon Results - 1996 To 2023
Individual race results, weather data, and qualifying times for the Chicago Race
@kaggle.runningwithrock_chicago_marathon_results
Individual race results, weather data, and qualifying times for the Chicago Race
@kaggle.runningwithrock_chicago_marathon_results
CREATE TABLE chicago_marathon_qualifying_times (
"gender" VARCHAR,
"chicago_age" VARCHAR,
"n_2025_cq" BIGINT,
"n_2024_cq" BIGINT,
"n_2014_cq" BIGINT
);
CREATE TABLE chicago_marathon_results (
"race" VARCHAR,
"year" BIGINT,
"name" VARCHAR,
"gender" VARCHAR,
"age" BIGINT,
"country" VARCHAR,
"overall" BIGINT,
"finish_time" VARCHAR,
"finish" BIGINT
);
CREATE TABLE chicago_marathon_weather (
"year" BIGINT,
"month" VARCHAR,
"day" BIGINT,
"date" TIMESTAMP,
"n_6am_temp" DOUBLE,
"n_6am_dew" DOUBLE,
"n_6am_wind" DOUBLE,
"n_9am_temp" DOUBLE,
"n_9am_dew" DOUBLE,
"n_9am_wind" DOUBLE,
"n_12pm_temp" DOUBLE,
"n_12pm_dew" DOUBLE,
"n_12pm_wind" DOUBLE
);
Anyone who has the link will be able to view this.