11 rows where workout_id = 104 sorted by date

View and edit SQL

Suggested facets: type, date, duration, duration_unit, created_at (date), updated_at (date)

workout_id

  • 104 · 11

date (date)

id created_at updated_at deleted_at workout_id type date ▼ duration duration_unit
537 2021-03-04 17:19:51.201338+03:00 2021-03-04 17:19:51.201338+03:00   104 104 HKWorkoutEventTypeSegment 2019-08-31 09:15:02+03:00 5.636486756801605 min
538 2021-03-04 17:19:51.201518+03:00 2021-03-04 17:19:51.201518+03:00   104 104 HKWorkoutEventTypeMotionPaused 2019-08-31 09:15:03+03:00 0.0  
539 2021-03-04 17:19:51.20158+03:00 2021-03-04 17:19:51.20158+03:00   104 104 HKWorkoutEventTypeMotionResumed 2019-08-31 09:15:03+03:00 0.0  
540 2021-03-04 17:19:51.201638+03:00 2021-03-04 17:19:51.201638+03:00   104 104 HKWorkoutEventTypeSegment 2019-08-31 09:20:41+03:00 5.896568655967712 min
541 2021-03-04 17:19:51.201691+03:00 2021-03-04 17:19:51.201691+03:00   104 104 HKWorkoutEventTypeSegment 2019-08-31 09:24:13+03:00 9.699325917164485 min
542 2021-03-04 17:19:51.201744+03:00 2021-03-04 17:19:51.201744+03:00   104 104 HKWorkoutEventTypeSegment 2019-08-31 09:26:34+03:00 6.110126129786173 min
543 2021-03-04 17:19:51.201802+03:00 2021-03-04 17:19:51.201802+03:00   104 104 HKWorkoutEventTypeSegment 2019-08-31 09:32:41+03:00 6.2384270687898 min
544 2021-03-04 17:19:51.201855+03:00 2021-03-04 17:19:51.201855+03:00   104 104 HKWorkoutEventTypeSegment 2019-08-31 09:33:55+03:00 10.63966445922852 min
545 2021-03-04 17:19:51.201907+03:00 2021-03-04 17:19:51.201907+03:00   104 104 HKWorkoutEventTypeSegment 2019-08-31 09:38:55+03:00 6.965003407001495 min
546 2021-03-04 17:19:51.201959+03:00 2021-03-04 17:19:51.201959+03:00   104 104 HKWorkoutEventTypeSegment 2019-08-31 09:44:34+03:00 5.298478774229685 min
547 2021-03-04 17:19:51.202013+03:00 2021-03-04 17:19:51.202013+03:00   104 104 HKWorkoutEventTypeSegment 2019-08-31 09:45:53+03:00 3.973835082848867 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`);