Cyclistic Rider Marketing Analysis
Navigating Speedy Success- An analysis of a bike share company
@kaggle.icanbe444_cyclistic_rider_marketing_analysis
Navigating Speedy Success- An analysis of a bike share company
@kaggle.icanbe444_cyclistic_rider_marketing_analysis
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
);
CREATE TABLE divvy_trips_2020_q1 (
"ride_id" VARCHAR,
"rideable_type" VARCHAR,
"started_at" TIMESTAMP,
"ended_at" TIMESTAMP,
"start_station_name" VARCHAR,
"start_station_id" BIGINT,
"end_station_name" VARCHAR,
"end_station_id" DOUBLE,
"start_lat" DOUBLE,
"start_lng" DOUBLE,
"end_lat" DOUBLE,
"end_lng" DOUBLE,
"member_casual" VARCHAR
);
Anyone who has the link will be able to view this.