1 row where "start_date" is on date 2019-09-04

View and edit SQL

Suggested facets: created_at (date), updated_at (date), creation_date (date), end_date (date), time (date)

start_date (date)

  • 2019-09-04 · 1
id ▼ created_at updated_at deleted_at workout_id source_name source_version creation_date start_date end_date file_path time track_name
76 2021-03-04 17:19:51.203217+03:00 2021-03-04 17:19:58.404253+03:00   105 105 Apple Watch — Vsevolod 12.4 2019-09-04 18:14:23+03:00 2019-09-04 17:35:29+03:00 2019-09-04 18:14:16+03:00 /workout-routes/route_2019-09-04_6.14pm.gpx 2021-03-04 14:15:51+00:00 Route 2019-09-04 6:14pm

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE `health_workout_routes` (`id` integer,`created_at` datetime,`updated_at` datetime,`deleted_at` datetime,`workout_id` integer,`source_name` text,`source_version` text,`creation_date` datetime,`start_date` datetime,`end_date` datetime,`file_path` text,`time` datetime,`track_name` text,PRIMARY KEY (`id`),CONSTRAINT `fk_health_workouts_route` FOREIGN KEY (`workout_id`) REFERENCES `health_workouts`(`id`));
CREATE INDEX `idx_health_workout_routes_deleted_at` ON `health_workout_routes`(`deleted_at`);
CREATE UNIQUE INDEX `health_workout_routes_key` ON `health_workout_routes`(`workout_id`,`creation_date`);