Divvy 2019
The full year for Cyclistic
@kaggle.moazmohamedhassan_divvy_2019
The full year for Cyclistic
@kaggle.moazmohamedhassan_divvy_2019
CREATE TABLE divvy_trips_2019_q4 (
"trip_id" BIGINT,
"start_time" TIMESTAMP,
"end_time" TIMESTAMP,
"bikeid" BIGINT,
"tripduration" DOUBLE,
"from_station_id" BIGINT,
"from_station_name" VARCHAR,
"to_station_id" BIGINT,
"to_station_name" VARCHAR,
"usertype" VARCHAR,
"gender" VARCHAR,
"birthyear" DOUBLE
);
CREATE TABLE divvy_trips_2019_q2 (
"n_01_rental_details_rental_id" BIGINT,
"n_01_rental_details_local_start_time" TIMESTAMP,
"n_01_rental_details_local_end_time" TIMESTAMP,
"n_01_rental_details_bike_id" BIGINT,
"n_01_rental_details_duration_in_seconds_uncapped" DOUBLE,
"n_03_rental_start_station_id" BIGINT,
"n_03_rental_start_station_name" VARCHAR,
"n_02_rental_end_station_id" BIGINT,
"n_02_rental_end_station_name" VARCHAR,
"user_type" VARCHAR,
"member_gender" VARCHAR,
"n_05_member_details_member_birthday_year" DOUBLE
);
CREATE TABLE divvy_trips_2019_q3 (
"trip_id" BIGINT,
"start_time" TIMESTAMP,
"end_time" TIMESTAMP,
"bikeid" BIGINT,
"tripduration" DOUBLE,
"from_station_id" BIGINT,
"from_station_name" VARCHAR,
"to_station_id" BIGINT,
"to_station_name" VARCHAR,
"usertype" VARCHAR,
"gender" VARCHAR,
"birthyear" DOUBLE
);
CREATE TABLE divvy_trips_2019_q1 (
"trip_id" BIGINT,
"start_time" TIMESTAMP,
"end_time" TIMESTAMP,
"bikeid" BIGINT,
"tripduration" DOUBLE,
"from_station_id" BIGINT,
"from_station_name" VARCHAR,
"to_station_id" BIGINT,
"to_station_name" VARCHAR,
"usertype" VARCHAR,
"gender" VARCHAR,
"birthyear" DOUBLE
);
Anyone who has the link will be able to view this.