Standard Chartered Singapore Marathon 2022
Runners' Timing for Standard Chartered Singapore Marathon 2022
@kaggle.clement7903_standard_chartered_marathon_2022
Runners' Timing for Standard Chartered Singapore Marathon 2022
@kaggle.clement7903_standard_chartered_marathon_2022
Pos: Overall position of runner in the race based on gun time
Name: Name of runner
Gun Time: Time elapsed between when the race starts (gun goes off) and when the participant crosses the finish line
Net Time*: Time the person crosses the start line mats and crosses the finish line mat.
Representing: Country the runner is representing
Category (Pos): Runner's age and position within that age category
Gender (Pos): Runner's gender and position within that gender category
Net Pos: Overall position of runner in the race based on net time
*Net time will always be lower or equals to gun time
CREATE TABLE full_marathon_all (
"pos" VARCHAR,
"name" VARCHAR,
"gun_time" VARCHAR,
"net_time" VARCHAR,
"representing" VARCHAR,
"category_pos" VARCHAR -- Category (Pos),
"gender_pos" VARCHAR -- Gender (Pos),
"net_pos" DOUBLE
);CREATE TABLE full_marathon_all_1st_half_timing (
"pos" BIGINT,
"name" VARCHAR,
"time" VARCHAR,
"country_representing" VARCHAR,
"category_pos" VARCHAR -- Category (Pos),
"gender_pos" VARCHAR -- Gender (Pos)
);CREATE TABLE full_marathon_all_2nd_half_timing (
"pos" BIGINT,
"name" VARCHAR,
"time" VARCHAR,
"country_representing" VARCHAR,
"category_pos" VARCHAR -- Category (Pos),
"gender_pos" VARCHAR -- Gender (Pos)
);CREATE TABLE full_marathon_sg_only (
"pos" BIGINT,
"name" VARCHAR,
"time" VARCHAR,
"country_representing" VARCHAR,
"category_pos" VARCHAR -- Category (Pos),
"gender_pos" VARCHAR -- Gender (Pos)
);CREATE TABLE half_marathon_all (
"pos" VARCHAR,
"name" VARCHAR,
"gun_time" VARCHAR,
"net_time" VARCHAR,
"representing" VARCHAR,
"category_pos" VARCHAR -- Category (Pos),
"gender_pos" VARCHAR -- Gender (Pos)
);Anyone who has the link will be able to view this.