7 rows where "date" is on date 2019-11-11 sorted by type

View and edit SQL

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

date (date)

  • 2019-11-11 · 7
id created_at updated_at deleted_at workout_id type ▼ date duration duration_unit
566 2021-03-04 17:19:51.207161+03:00 2021-03-04 17:19:51.207161+03:00   108 108 HKWorkoutEventTypePause 2019-11-11 09:33:26+03:00 0.0  
560 2021-03-04 17:19:51.206487+03:00 2021-03-04 17:19:51.206487+03:00   108 108 HKWorkoutEventTypeSegment 2019-11-11 08:44:01+03:00 12.15384690364202 min
561 2021-03-04 17:19:51.206647+03:00 2021-03-04 17:19:51.206647+03:00   108 108 HKWorkoutEventTypeSegment 2019-11-11 08:56:10+03:00 10.00809675852458 min
562 2021-03-04 17:19:51.20674+03:00 2021-03-04 17:19:51.20674+03:00   108 108 HKWorkoutEventTypeSegment 2019-11-11 09:00:41+03:00 18.05245497822762 min
563 2021-03-04 17:19:51.206832+03:00 2021-03-04 17:19:51.206832+03:00   108 108 HKWorkoutEventTypeSegment 2019-11-11 09:06:10+03:00 12.47445270021757 min
564 2021-03-04 17:19:51.206947+03:00 2021-03-04 17:19:51.206947+03:00   108 108 HKWorkoutEventTypeSegment 2019-11-11 09:18:39+03:00 2051.904593978325 min
565 2021-03-04 17:19:51.207045+03:00 2021-03-04 17:19:51.207045+03:00   108 108 HKWorkoutEventTypeSegment 2019-11-11 09:18:44+03:00 2051.819440972805 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`);