1 row where workout_id = 101 sorted by source_version

View and edit SQL

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

id created_at updated_at deleted_at workout_id source_name source_version ▼ creation_date start_date end_date file_path time track_name
72 2021-03-04 17:19:51.196486+03:00 2021-03-04 17:19:57.851952+03:00   101 101 Apple Watch — Vsevolod 12.4 2019-08-25 23:44:16+03:00 2019-08-25 23:24:07+03:00 2019-08-25 23:43:42+03:00 /workout-routes/route_2019-08-25_11.43pm.gpx 2021-03-04 14:15:50+00:00 Route 2019-08-25 11:43pm

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