4 rows where activity_type = "HKWorkoutActivityTypeWalking" sorted by created_at

View and edit SQL

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

activity_type

  • HKWorkoutActivityTypeWalking · 4
id created_at ▼ updated_at deleted_at activity_type duration duration_unit total_distance total_distance_unit total_energy_burned total_energy_burned_unit source_name source_version creation_date start_date end_date device_id
101 2021-03-04 17:19:51.196453+03:00 2021-03-04 17:19:51.196453+03:00   HKWorkoutActivityTypeWalking 29.69666733543078 min 2.511861739283693 km 116.7208828616199 kcal Apple Watch — Vsevolod 5.2.1 2019-08-25 23:43:43+03:00 2019-08-25 23:14:01+03:00 2019-08-25 23:43:43+03:00 Apple Watch 5
105 2021-03-04 17:19:51.203182+03:00 2021-03-04 17:19:51.203182+03:00   HKWorkoutActivityTypeWalking 53.91989795168241 min 2.995830895438987 km 168.7806766610029 kcal Apple Watch — Vsevolod 5.2.1 2019-09-04 18:14:19+03:00 2019-09-04 17:20:23+03:00 2019-09-04 18:14:18+03:00 Apple Watch 5
108 2021-03-04 17:19:51.207345+03:00 2021-03-04 17:19:51.207345+03:00   HKWorkoutActivityTypeWalking 49.42552184661229 min 3.868852736281693 km 227.4226541757329 kcal Apple Watch — Vsevolod 5.2.1 2019-11-12 19:48:57+03:00 2019-11-11 08:44:01+03:00 2019-11-12 19:48:53+03:00 Apple Watch 5
111 2021-03-04 17:19:51.211865+03:00 2021-03-04 17:19:51.211865+03:00   HKWorkoutActivityTypeWalking 148.269219605128 min 5.243877764790785 km 318.6174069975332 kcal Apple Watch — Vsevolod 5.2.1 2019-11-17 19:05:17+03:00 2019-11-17 16:36:59+03:00 2019-11-17 19:05:15+03:00 Apple Watch 5

Advanced export

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

CSV options:

CREATE TABLE `health_workouts` (`id` integer,`created_at` datetime,`updated_at` datetime,`deleted_at` datetime,`activity_type` text,`duration` real,`duration_unit` text,`total_distance` real,`total_distance_unit` text,`total_energy_burned` real,`total_energy_burned_unit` text,`source_name` text,`source_version` text,`creation_date` datetime UNIQUE,`start_date` datetime,`end_date` datetime,`device_id` integer,PRIMARY KEY (`id`),CONSTRAINT `fk_health_workouts_device` FOREIGN KEY (`device_id`) REFERENCES `health_devices`(`id`));
CREATE INDEX `idx_health_workouts_deleted_at` ON `health_workouts`(`deleted_at`);