1 row where workout_id = 110 sorted by id descending

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
80 2021-03-04 17:19:51.210425+03:00 2021-03-04 17:19:58.774925+03:00   110 110 Apple Watch — Vsevolod 13.1.3 2019-11-17 07:57:08+03:00 2019-11-17 07:28:02+03:00 2019-11-17 07:56:33+03:00 /workout-routes/route_2019-11-17_7.56am.gpx 2021-03-04 14:15:51+00:00 Route 2019-11-17 7:56am

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