1 row where "date_of_birth" is on date 2001-07-13 sorted by created_at

View and edit SQL

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

date_of_birth (date)

  • 2001-07-13 · 1
id created_at ▼ updated_at deleted_at data_export_id date_of_birth biological_sex blood_type fitzpatrick_skin_type cardio_fitness_medications_use
1 2021-03-04 17:17:30.014159+03:00 2021-03-04 17:17:30.014159+03:00   1 1 2001-07-13 00:00:00+00:00 HKBiologicalSexMale HKBloodTypeNotSet HKFitzpatrickSkinTypeNotSet None

Advanced export

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

CSV options:

CREATE TABLE `health_me_records` (`id` integer,`created_at` datetime,`updated_at` datetime,`deleted_at` datetime,`data_export_id` integer UNIQUE,`date_of_birth` datetime,`biological_sex` text,`blood_type` text,`fitzpatrick_skin_type` text,`cardio_fitness_medications_use` text,PRIMARY KEY (`id`),CONSTRAINT `fk_health_data_exports_me` FOREIGN KEY (`data_export_id`) REFERENCES `health_data_exports`(`id`));
CREATE INDEX `idx_health_me_records_deleted_at` ON `health_me_records`(`deleted_at`);