Le Mans 24 Hours
100 Years of Le Mans 24 Hour Race Results from 1923-2023
@kaggle.joebeachcapital_le_mans_24_hours
100 Years of Le Mans 24 Hour Race Results from 1923-2023
@kaggle.joebeachcapital_le_mans_24_hours
Le Mans 24 Hour Race results from the first one in 1923 till this year 2023.
Dataset also includes how the circuit has changed over the years and details of each race.
CREATE TABLE circuits (
"name" VARCHAR,
"since" TIMESTAMP,
"length_km" DOUBLE,
"changes" VARCHAR
);CREATE TABLE races (
"id" BIGINT,
"circuit_id" BIGINT,
"event_date" TIMESTAMP,
"start_time" VARCHAR,
"cancelled" BIGINT,
"cancellation_reason" VARCHAR,
"distance_km" DOUBLE
);CREATE TABLE results_in (
"year" BIGINT,
"pos" VARCHAR,
"class" VARCHAR,
"no" BIGINT,
"teamctry" VARCHAR,
"team" VARCHAR,
"drctry" VARCHAR,
"drivers" VARCHAR,
"chassis" VARCHAR,
"engine" VARCHAR,
"tyres" VARCHAR,
"laps" BIGINT,
"distance" DOUBLE,
"time" VARCHAR,
"reason" VARCHAR
);Anyone who has the link will be able to view this.