2 rows where "end_date" is on date 2020-04-27 sorted by duration

View and edit SQL

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

end_date (date)

  • 2020-04-27 · 2
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
114 2021-03-04 17:19:51.213506+03:00 2021-03-04 17:19:51.213506+03:00   HKWorkoutActivityTypeCrossTraining 3.431298683087031 min 0.0 km 0.0 kcal Nike Training 2004072002 2020-04-27 19:52:44+03:00 2020-04-27 19:49:12+03:00 2020-04-27 19:52:44+03:00  
115 2021-03-04 17:19:51.21362+03:00 2021-03-04 17:19:51.21362+03:00   HKWorkoutActivityTypeCrossTraining 7.0 min 0.0 km 35.0 kcal Nike Training 2004072002 2020-04-27 20:00:39+03:00 2020-04-27 19:53:29+03:00 2020-04-27 20:00:39+03:00  

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