1 row where "creation_date" is on date 2019-08-29

View and edit SQL

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

creation_date (date)

  • 2019-08-29 · 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
74 2021-03-04 17:19:51.200422+03:00 2021-03-04 17:19:58.190475+03:00   103 103 Apple Watch — Vsevolod 12.4 2019-08-29 09:04:54+03:00 2019-08-29 08:33:36+03:00 2019-08-29 09:03:09+03:00 /workout-routes/route_2019-08-29_9.03am.gpx 2021-03-04 14:15:51+00:00 Route 2019-08-29 9:03am

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`);