4 rows where workout_id = 101 sorted by type

View and edit SQL

Suggested facets: date (date)

workout_id

updated_at (date)

created_at (date)

id created_at updated_at deleted_at workout_id type ▼ date duration duration_unit
500 2021-03-04 17:19:51.195979+03:00 2021-03-04 17:19:51.195979+03:00   101 101 HKWorkoutEventTypeSegment 2019-08-25 23:14:01+03:00 11.56169195572535 min
501 2021-03-04 17:19:51.196109+03:00 2021-03-04 17:19:51.196109+03:00   101 101 HKWorkoutEventTypeSegment 2019-08-25 23:25:35+03:00 14.72171435952187 min
502 2021-03-04 17:19:51.196236+03:00 2021-03-04 17:19:51.196236+03:00   101 101 HKWorkoutEventTypeSegment 2019-08-25 23:36:43+03:00 6.750533958276113 min
503 2021-03-04 17:19:51.196368+03:00 2021-03-04 17:19:51.196368+03:00   101 101 HKWorkoutEventTypeSegment 2019-08-25 23:40:18+03:00 3.161627306540807 min

Advanced export

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

CSV options:

CREATE TABLE `health_workout_events` (`id` integer,`created_at` datetime,`updated_at` datetime,`deleted_at` datetime,`workout_id` integer,`type` text,`date` datetime,`duration` real,`duration_unit` text,PRIMARY KEY (`id`),CONSTRAINT `fk_health_workouts_events` FOREIGN KEY (`workout_id`) REFERENCES `health_workouts`(`id`));
CREATE UNIQUE INDEX `health_workout_events_key` ON `health_workout_events`(`workout_id`,`type`,`date`);
CREATE INDEX `idx_health_workout_events_deleted_at` ON `health_workout_events`(`deleted_at`);