F1H2O Championship Dataset
Formula 1 Powerboat World Championship
@kaggle.igalbronshtein_f1h2o_championship_dataset
Formula 1 Powerboat World Championship
@kaggle.igalbronshtein_f1h2o_championship_dataset
Acknowlegement
https://www.f1h2o.com
https://unsplash.com
CREATE TABLE drivers (
"year" BIGINT,
"team" VARCHAR,
"country" VARCHAR,
"manager" VARCHAR,
"debut" VARCHAR,
"drivers" VARCHAR,
"links" VARCHAR
);CREATE TABLE lap (
"year" BIGINT,
"pos" BIGINT,
"nat" VARCHAR,
"licence" VARCHAR,
"boat" BIGINT,
"driver" VARCHAR,
"points" BIGINT
);CREATE TABLE pole (
"year" BIGINT,
"pos" BIGINT,
"nat" VARCHAR,
"licence" VARCHAR,
"boat" BIGINT,
"driver" VARCHAR,
"points" BIGINT
);CREATE TABLE results (
"year" BIGINT,
"pos" BIGINT,
"nat" VARCHAR,
"licence" VARCHAR,
"boat" BIGINT,
"driver" VARCHAR,
"laps" DOUBLE,
"gap" VARCHAR,
"points" DOUBLE,
"competition" VARCHAR,
"c_location" VARCHAR,
"c_date" VARCHAR
);CREATE TABLE standings (
"year" BIGINT,
"pos" BIGINT,
"nat" VARCHAR,
"licence" VARCHAR,
"boat" DOUBLE,
"driver" VARCHAR,
"p_list" VARCHAR,
"p_total" BIGINT
);CREATE TABLE teams (
"year" BIGINT,
"pos" BIGINT,
"country" VARCHAR,
"team" VARCHAR,
"points" BIGINT
);Anyone who has the link will be able to view this.