Formula 1 Race Events
Tables of safety car deployments and red flags in Formula 1 Grand Prix races
@kaggle.jtrotman_formula_1_race_events
Tables of safety car deployments and red flags in Formula 1 Grand Prix races
@kaggle.jtrotman_formula_1_race_events
CREATE TABLE fatal_accidents_drivers (
"driver" VARCHAR,
"age" DOUBLE,
"date_of_accident" TIMESTAMP,
"event" VARCHAR,
"car" VARCHAR,
"session" VARCHAR
);
CREATE TABLE fatal_accidents_marshalls (
"name" VARCHAR,
"age" BIGINT,
"date_of_accident" TIMESTAMP,
"event" VARCHAR
);
CREATE TABLE red_flags (
"race" VARCHAR,
"lap" BIGINT,
"resumed" VARCHAR,
"incident" VARCHAR,
"excluded" VARCHAR
);
CREATE TABLE safety_cars (
"race" VARCHAR,
"cause" VARCHAR,
"deployed" BIGINT,
"retreated" DOUBLE,
"fulllaps" BIGINT
);
Anyone who has the link will be able to view this.