inputs
stringlengths 25
211
| labels
stringlengths 62
1.22k
| db_id
stringclasses 1
value | is_impossible
bool 1
class | id
stringlengths 24
24
|
---|---|---|---|---|
what's the percentile of 285.0 in a platelet count lab test at the same age as patient 458 in their last hospital encounter? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'platelet count' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 458 and admissions.dischtime is not null order by admissions.admittime desc limit 1 ) ) ) as t1 where t1.valuenum = 285.0 | mimic_iii | false | 583e9d772cde150ac9966f26 |
tell me the percentile of hematocrit 35.0 among all patients of the same age as patient 99791 on their first hospital visit? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'hematocrit' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 99791 and admissions.dischtime is not null order by admissions.admittime asc limit 1 ) ) ) as t1 where t1.valuenum = 35.0 | mimic_iii | false | e5dfee1be287fc8a4a464e32 |
what percentile is 66.0 calculated total co2 in a patient of the same age as patient 26469 on their first hospital visit? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'calculated total co2' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 26469 and admissions.dischtime is not null order by admissions.admittime asc limit 1 ) ) ) as t1 where t1.valuenum = 66.0 | mimic_iii | false | 3a35a1673f155f5f675b261c |
what was the percentile of 7.9 in the white blood cells lab test with the same age of patient 46484 during their first hospital visit? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'white blood cells' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 46484 and admissions.dischtime is not null order by admissions.admittime asc limit 1 ) ) ) as t1 where t1.valuenum = 7.9 | mimic_iii | false | 3555b9efeae316f38fe5872e |
what percentile of a red blood cells is at 4.1 among a patient at the same age as patient 65582 in their current hospital encounter? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'red blood cells' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 65582 and admissions.dischtime is null ) ) ) as t1 where t1.valuenum = 4.1 | mimic_iii | false | 14b828a545de937c65dd4fcc |
what percentile of the urea nitrogen value is 26.0 among patients of the same age as patient 1269 on their last hospital encounter? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'urea nitrogen' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 1269 and admissions.dischtime is not null order by admissions.admittime desc limit 1 ) ) ) as t1 where t1.valuenum = 26.0 | mimic_iii | false | 9dfff107f737fae5548c35d9 |
how the percentile is the pt value of 13.8 among patients of the same age as patient 32163 during the last hospital visit? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'pt' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 32163 and admissions.dischtime is not null order by admissions.admittime desc limit 1 ) ) ) as t1 where t1.valuenum = 13.8 | mimic_iii | false | 965c48a2620210c27d722bff |
what is the percentile of 32.1 in mch given the same age of patient 91768 during the first hospital visit? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'mch' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 91768 and admissions.dischtime is not null order by admissions.admittime asc limit 1 ) ) ) as t1 where t1.valuenum = 32.1 | mimic_iii | false | a3ad19affb5bb14736251830 |
tell me the percentile of rdw worth 13.4 for patients of the same age as patient 84346 during the last hospital visit? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'rdw' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 84346 and admissions.dischtime is not null order by admissions.admittime desc limit 1 ) ) ) as t1 where t1.valuenum = 13.4 | mimic_iii | false | 987f1088ac3f73013abf1bc1 |
what percentile of the po2 value is a 75.0 among a patient of the same age as patient 6170 on this hospital encounter? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'po2' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 6170 and admissions.dischtime is null ) ) ) as t1 where t1.valuenum = 75.0 | mimic_iii | false | 2ebc5b5945e82022d3eb160c |
tell me the percentile of glucose of 180.0 between patients of the same age as patient 14467 on this hospital encounter? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'glucose' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 14467 and admissions.dischtime is null ) ) ) as t1 where t1.valuenum = 180.0 | mimic_iii | false | 6af2c1b0dc6888ff6a8b8942 |
what percentile is the value of the anion gap in 12.0 among patients of the same age as patient 5252 in their first hospital encounter? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'anion gap' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 5252 and admissions.dischtime is not null order by admissions.admittime asc limit 1 ) ) ) as t1 where t1.valuenum = 12.0 | mimic_iii | false | c93d43513497cbb7c843ce76 |
what is the percentile of 32.5 for a hematocrit test given the same age of patient 76372 during the current hospital encounter? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'hematocrit' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 76372 and admissions.dischtime is null ) ) ) as t1 where t1.valuenum = 32.5 | mimic_iii | false | 2986e171640469c28c087741 |
what is the percentile hematocrit value of 32.7 among patients of the same age as patient 41393 when they came to the hospital last time? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'hematocrit' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 41393 and admissions.dischtime is not null order by admissions.admittime desc limit 1 ) ) ) as t1 where t1.valuenum = 32.7 | mimic_iii | false | 405ef0c2339ead9c569f4a71 |
what was the percentile of 18.9 in the rdw lab test with the same age of patient 7112 during this hospital encounter? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'rdw' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 7112 and admissions.dischtime is null ) ) ) as t1 where t1.valuenum = 18.9 | mimic_iii | false | d5747749448cb78a4e797b25 |
what is the percentile of 15.9 in the laboratory test with rdw at the same age of patient 78086 on the first hospital visit? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'rdw' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 78086 and admissions.dischtime is not null order by admissions.admittime asc limit 1 ) ) ) as t1 where t1.valuenum = 15.9 | mimic_iii | false | 5c2ee0b94c8c69fc3e4d3a0f |
what was the percentile of 21.3 in the vancomycin lab test with the same age of patient 99791 in their first hospital visit? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'vancomycin' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 99791 and admissions.dischtime is not null order by admissions.admittime asc limit 1 ) ) ) as t1 where t1.valuenum = 21.3 | mimic_iii | false | 82486c35dabe2ad07ce1c2dc |
what is the percentile of 13.8 for a white blood cells test given the same age of patient 96833 on their current hospital encounter? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'white blood cells' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 96833 and admissions.dischtime is null ) ) ) as t1 where t1.valuenum = 13.8 | mimic_iii | false | 91d5671dd9134e10354bd074 |
how the percentile is the glucose value of 83.0 among patients of the same age as patient 42473 on the current hospital visit? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'glucose' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 42473 and admissions.dischtime is null ) ) ) as t1 where t1.valuenum = 83.0 | mimic_iii | false | bc70c04fdefbc366d5cf19ef |
what is the percentile of 11.8 in a rdw laboratory test given the same age of patient 1784 in the current hospital visit? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'rdw' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 1784 and admissions.dischtime is null ) ) ) as t1 where t1.valuenum = 11.8 | mimic_iii | false | f9d6bcfa8bac2f346fde601b |
what are the percentile of 83.0 in a glucose lab test given the same age of patient 42473 during their current hospital visit? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'glucose' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 42473 and admissions.dischtime is null ) ) ) as t1 where t1.valuenum = 83.0 | mimic_iii | false | 3a856fa670aabf3e7efbe233 |
tell me the percentile of mcv 90.0 among all patients of the same age as patient 17944 in the last hospital visit? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'mcv' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 17944 and admissions.dischtime is not null order by admissions.admittime desc limit 1 ) ) ) as t1 where t1.valuenum = 90.0 | mimic_iii | false | e5660839e60cb06d5132178c |
what is the percentile of 3.4 in phosphate given the same age of patient 79348 during the first hospital visit? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'phosphate' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 79348 and admissions.dischtime is not null order by admissions.admittime asc limit 1 ) ) ) as t1 where t1.valuenum = 3.4 | mimic_iii | false | ae3575cb522216045ecbbd23 |
what is the percentile of 30.0 in a laboratory bicarbonate test given the same as patient 77177's age during the last hospital encounter? | select distinct t1.c1 from ( select labevents.valuenum, percent_rank() over ( order by labevents.valuenum ) as c1 from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'bicarbonate' ) and labevents.hadm_id in ( select admissions.hadm_id from admissions where admissions.age = ( select admissions.age from admissions where admissions.subject_id = 77177 and admissions.dischtime is not null order by admissions.admittime desc limit 1 ) ) ) as t1 where t1.valuenum = 30.0 | mimic_iii | false | 9843a131fd25aecac689981e |
how many days is it since patient 83062's hospital admission? | select 1 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 83062 and admissions.dischtime is null | mimic_iii | false | 7c3973c50ab6b0f0dec505f3 |
how many hours have elapsed since the hospital admission of patient 55360? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 55360 and admissions.dischtime is null | mimic_iii | false | 7194b3e5751b4b18a80d5d5b |
how many hours has it been since patient 15447 was admitted into the hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 15447 and admissions.dischtime is null | mimic_iii | false | 2c1dbe93343e6fd23827dc82 |
how many days have it been since the time patient 68280 was admitted to hospital? | select 1 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 68280 and admissions.dischtime is null | mimic_iii | false | e5a2bad92db91495adad8610 |
how many days have elapsed since patient 97395 was admitted to the hospital? | select 1 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 97395 and admissions.dischtime is null | mimic_iii | false | ac55cdd526f91ab8b8851b83 |
how many days has passed since patient 55360's hospital admission? | select 1 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 55360 and admissions.dischtime is null | mimic_iii | false | 8cd0b764bb170e41b2d95481 |
how many days have passed since patient 94229 was admitted in hospital? | select 1 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 94229 and admissions.dischtime is null | mimic_iii | false | 302845415e7ccb195b6cca87 |
how many hours has time elapsed since patient 18866's hospital admission? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 18866 and admissions.dischtime is null | mimic_iii | false | 512582232710a580b1c8ac12 |
how many days has it been since patient 10811 was admitted for to the hospital? | select 1 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 10811 and admissions.dischtime is null | mimic_iii | false | 5bd7ef9e2a9b7c3f7c20f7de |
how many days has it been since patient 5828 has been admitted to the hospital? | select 1 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 5828 and admissions.dischtime is null | mimic_iii | false | 69c0487f3780da4b525a0d78 |
how many days have it been since patient 2518 was admitted into the hospital? | select 1 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 2518 and admissions.dischtime is null | mimic_iii | false | f404b25cb470fe7cab0d898a |
how many hours has elapsed since patient 14467 was admitted to the hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 14467 and admissions.dischtime is null | mimic_iii | false | fda8146e51229a3f8fd96d0e |
how many hours had it been since patient 57050 was admitted to the hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 57050 and admissions.dischtime is null | mimic_iii | false | 80e83ca849bd14f95af3c58e |
i mean, how many hours has it been since patient 19412 was admitted to the hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 19412 and admissions.dischtime is null | mimic_iii | false | c688ab53b845d59124c4a94b |
how many days have pass since patient 11826 was admitted to the hospital? | select 1 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 11826 and admissions.dischtime is null | mimic_iii | false | 1f0e4a08d5c0a782a4919aa0 |
how many hours has it passed since patient 15447 was admitted to hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 15447 and admissions.dischtime is null | mimic_iii | false | 23d2c90373a3c0510a4e303a |
what is the total number of hours since patient 97395 was admitted to the hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 97395 and admissions.dischtime is null | mimic_iii | false | b7d48abcb636bf6401816314 |
how many hours have elapsed since patient 99883 was admitted for in the hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 99883 and admissions.dischtime is null | mimic_iii | false | a6d410bdedfe2fe7dd94c9d5 |
what number of days has passed since patient 6170 was admitted to the hospital? | select 1 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 6170 and admissions.dischtime is null | mimic_iii | false | 36aad88475b179a5c605834e |
how many days have passed since patient 92788 had an admission to the hospital? | select 1 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 92788 and admissions.dischtime is null | mimic_iii | false | 3df88e6a1d62d6819ce6706d |
how many hours have elapsed since patient 73713 was admitted to the hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 73713 and admissions.dischtime is null | mimic_iii | false | 20f9c6cd4acdd706ff3fc1fb |
how many hours have passed since patient 12726 was admitted to hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 12726 and admissions.dischtime is null | mimic_iii | false | cd5459e26cf5654ee8090c77 |
how many hours have there been since patient 94229 was admitted to the hospital for? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 94229 and admissions.dischtime is null | mimic_iii | false | 3dec3c01ef901d2556c1345e |
how many days has it elapsed since patient 30826 was admitted to the hospital? | select 1 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 30826 and admissions.dischtime is null | mimic_iii | false | c5dd66f300e98af470a11adc |
how many hours have passed since patient 40059 was admitted to the hospital. | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 40059 and admissions.dischtime is null | mimic_iii | false | fe3782e15217bdc3d664191d |
how many hours have passed since patient 83038's hospital admission? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 83038 and admissions.dischtime is null | mimic_iii | false | 9b372692571399431640cdcc |
what number of hours have passed since patient 13054's hospital admission? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 13054 and admissions.dischtime is null | mimic_iii | false | b9d65ce7fd970dc7eea80249 |
how many days has it been since patient 68280 was admitted to the hospital? | select 1 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 68280 and admissions.dischtime is null | mimic_iii | false | d695080d9f4192acd435c779 |
how many hours have passed since patient 9964 was admitted for to the hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 9964 and admissions.dischtime is null | mimic_iii | false | c31af89bbf95bff11fa3301a |
so how many days have passed since patient 27172 was admitted to the hospital? | select 1 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 27172 and admissions.dischtime is null | mimic_iii | false | f5d054d5e64662b3ade33f7a |
tell me the number of days since patient 73713's hospital admission? | select 1 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 73713 and admissions.dischtime is null | mimic_iii | false | 2a4f046bbeb261beb7fdce82 |
how many hours have passed since patient 25733 was admitted to the hospital for? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 25733 and admissions.dischtime is null | mimic_iii | false | 1740ff1c246b9a03ab7f038a |
what number of hours have it been since patient 68280 was admitted to the hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 68280 and admissions.dischtime is null | mimic_iii | false | c6b633ff18927ae35b84a830 |
how many hours since patient 14671 was admitted to hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 14671 and admissions.dischtime is null | mimic_iii | false | 429a4f5994e0c1527cc81557 |
how many hours have passed since patient 10624 has been admitted to the hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 10624 and admissions.dischtime is null | mimic_iii | false | feeb3ff06b38b969dc67dfc6 |
how many days has it gone from patient 14467 was admitted to the hospital? | select 1 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 14467 and admissions.dischtime is null | mimic_iii | false | ff9d74f6e4f53ff341e58bd5 |
what is the number of hours since patient 3125 was admitted to the hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 3125 and admissions.dischtime is null | mimic_iii | false | d5e4d8f7c9f0e69d3d2c9843 |
how many days has passed since patient 30826 was admitted into the hospital? | select 1 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 30826 and admissions.dischtime is null | mimic_iii | false | 10c9ec8d60c7030bc15c0c7a |
how many hours have passed since the patient 95057 was admitted to the hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 95057 and admissions.dischtime is null | mimic_iii | false | 867f2497cdbfc8b477aaa2e6 |
how many hours have passed since the admission of patient 17667 to the hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 17667 and admissions.dischtime is null | mimic_iii | false | 9de8ec683b32bfb788aeecee |
how many days have elapsed since patient 12775 was admitted to hospital for? | select 1 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 12775 and admissions.dischtime is null | mimic_iii | false | 14ae0269b7ef51b5b4127e8d |
what is the total number of hours since patient 97395 was admitted to hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 97395 and admissions.dischtime is null | mimic_iii | false | 9161a0f876d82950bfd1bf76 |
how many hours has it passed since patient 42829 was admitted to the hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 42829 and admissions.dischtime is null | mimic_iii | false | b6033ba10b126567bb2ab64b |
how many hours have been elapsed since patient 27172 was admitted to the hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 27172 and admissions.dischtime is null | mimic_iii | false | 8dbfe045e19158caa248d4bb |
how many hours has it been since patient 72909 was admitted for to the hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 72909 and admissions.dischtime is null | mimic_iii | false | df5ee43819e77e1c576b774a |
how many days has it elapsed since patient 2518 was admitted to the hospital? | select 1 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 2518 and admissions.dischtime is null | mimic_iii | false | b61750f8283d704e57d4b34c |
how many hours has it passed since patient 7112 was admitted to hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 7112 and admissions.dischtime is null | mimic_iii | false | fe18d2e148b020a35fc403f7 |
how many hours have passed since patient 15447 was admitted to hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 15447 and admissions.dischtime is null | mimic_iii | false | ac581b7758f6210442ad145f |
how many hours has passed since patient 27172's hospital admission? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 27172 and admissions.dischtime is null | mimic_iii | false | 032384b6e7f198ac261ee641 |
how many hours has it been since patient 92846 has been admitted to the hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 92846 and admissions.dischtime is null | mimic_iii | false | 0d38c9ae14422dc269e06627 |
how many days has it elapsed since patient 9964 was admitted to the hospital? | select 1 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 9964 and admissions.dischtime is null | mimic_iii | false | 977bad747da38c66380215f0 |
what number of days have passed since patient 71689's hospital admission? | select 1 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 71689 and admissions.dischtime is null | mimic_iii | false | 4d8ca3e2d23dd9f788289230 |
how many hours have passed since patient 42473 was admitted for to the hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 42473 and admissions.dischtime is null | mimic_iii | false | c9849a3410300de299533664 |
how many hours have there been since patient 70267 was admitted to the hospital for? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 70267 and admissions.dischtime is null | mimic_iii | false | 32b035741b40d955f6d14c35 |
how many hours has it passed since patient 94229 was admitted to hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 94229 and admissions.dischtime is null | mimic_iii | false | c4464a951e8f9111ec466c3b |
what number of hours have it been since patient 15447 was admitted to the hospital? | select 24 * ( strftime('%j',current_time) - strftime('%j',admissions.admittime) ) from admissions where admissions.subject_id = 15447 and admissions.dischtime is null | mimic_iii | false | d6049ea4a36bd9fff43e71c5 |
how many days have it been since patient 65582 was admitted in the icu? | select 1 * ( strftime('%j',current_time) - strftime('%j',icustays.intime) ) from icustays where icustays.hadm_id in ( select admissions.hadm_id from admissions where admissions.subject_id = 65582 ) and icustays.outtime is null | mimic_iii | false | 91040301d093ef9ce87a228f |
how many hours has it been since patient 19428 was admitted into icu? | select 24 * ( strftime('%j',current_time) - strftime('%j',icustays.intime) ) from icustays where icustays.hadm_id in ( select admissions.hadm_id from admissions where admissions.subject_id = 19428 ) and icustays.outtime is null | mimic_iii | false | ecbb6cf7bcf0595e1c5dad0d |
how many hours have passed since patient 6170 has been admitted to the icu? | select 24 * ( strftime('%j',current_time) - strftime('%j',icustays.intime) ) from icustays where icustays.hadm_id in ( select admissions.hadm_id from admissions where admissions.subject_id = 6170 ) and icustays.outtime is null | mimic_iii | false | 99f74bdb11db4b43b8daae0d |
how many hours have it been since the admission to the icu of patient 49176? | select 24 * ( strftime('%j',current_time) - strftime('%j',icustays.intime) ) from icustays where icustays.hadm_id in ( select admissions.hadm_id from admissions where admissions.subject_id = 49176 ) and icustays.outtime is null | mimic_iii | false | 752988e75d9a0ae8fdeffebb |
how many hours have elapsed since patient 90663's entry time in the icu? | select 24 * ( strftime('%j',current_time) - strftime('%j',icustays.intime) ) from icustays where icustays.hadm_id in ( select admissions.hadm_id from admissions where admissions.subject_id = 90663 ) and icustays.outtime is null | mimic_iii | false | 2084b2509d20b8cda3ae8cfc |
how many days has it passed since patient 55360 was admitted to the icu. | select 1 * ( strftime('%j',current_time) - strftime('%j',icustays.intime) ) from icustays where icustays.hadm_id in ( select admissions.hadm_id from admissions where admissions.subject_id = 55360 ) and icustays.outtime is null | mimic_iii | false | f3c23fa73a72a5f52d32384e |
how many hours had passed since patient 5828 had been admitted to the icu? | select 24 * ( strftime('%j',current_time) - strftime('%j',icustays.intime) ) from icustays where icustays.hadm_id in ( select admissions.hadm_id from admissions where admissions.subject_id = 5828 ) and icustays.outtime is null | mimic_iii | false | e5237b583e2c80326df00d46 |
how many days has passed since patient 6170 has been admitted to icu? | select 1 * ( strftime('%j',current_time) - strftime('%j',icustays.intime) ) from icustays where icustays.hadm_id in ( select admissions.hadm_id from admissions where admissions.subject_id = 6170 ) and icustays.outtime is null | mimic_iii | false | b437350940865840acbb1225 |
how many days have elapsed since the time patient 739 was admitted to the icu? | select 1 * ( strftime('%j',current_time) - strftime('%j',icustays.intime) ) from icustays where icustays.hadm_id in ( select admissions.hadm_id from admissions where admissions.subject_id = 739 ) and icustays.outtime is null | mimic_iii | false | 8c52084bd445ac0ab6095698 |
how many hours have it taken since patient 55360 is admitted to the icu? | select 24 * ( strftime('%j',current_time) - strftime('%j',icustays.intime) ) from icustays where icustays.hadm_id in ( select admissions.hadm_id from admissions where admissions.subject_id = 55360 ) and icustays.outtime is null | mimic_iii | false | f9773e2c2c6068f6e4b76b19 |
how many hours have passed since patient 6170 was admitted in the intensive care unit? | select 24 * ( strftime('%j',current_time) - strftime('%j',icustays.intime) ) from icustays where icustays.hadm_id in ( select admissions.hadm_id from admissions where admissions.subject_id = 6170 ) and icustays.outtime is null | mimic_iii | false | 40366de787127dc734526bab |
how many hours have passed since patient 99883 was admitted to icu. | select 24 * ( strftime('%j',current_time) - strftime('%j',icustays.intime) ) from icustays where icustays.hadm_id in ( select admissions.hadm_id from admissions where admissions.subject_id = 99883 ) and icustays.outtime is null | mimic_iii | false | 8894976b993fa39ee17b68b3 |
how many days it has been since patient 1902 was admitted to the icu? | select 1 * ( strftime('%j',current_time) - strftime('%j',icustays.intime) ) from icustays where icustays.hadm_id in ( select admissions.hadm_id from admissions where admissions.subject_id = 1902 ) and icustays.outtime is null | mimic_iii | false | 25742d67f906f82031568a23 |
how many hours have elapsed since patient 5828 was admitted to the intensive care unit? | select 24 * ( strftime('%j',current_time) - strftime('%j',icustays.intime) ) from icustays where icustays.hadm_id in ( select admissions.hadm_id from admissions where admissions.subject_id = 5828 ) and icustays.outtime is null | mimic_iii | false | de6d5c805b7240e383b0bf90 |
how many hours has elapsed since patient 92846 was admitted into the icu? | select 24 * ( strftime('%j',current_time) - strftime('%j',icustays.intime) ) from icustays where icustays.hadm_id in ( select admissions.hadm_id from admissions where admissions.subject_id = 92846 ) and icustays.outtime is null | mimic_iii | false | 52197cd5e1dfdfd183d5dd51 |
how many hours have passed since patient 1561 was admitted into the intensive care unit? | select 24 * ( strftime('%j',current_time) - strftime('%j',icustays.intime) ) from icustays where icustays.hadm_id in ( select admissions.hadm_id from admissions where admissions.subject_id = 1561 ) and icustays.outtime is null | mimic_iii | false | a10c046f9b1f893090b305fd |
how many hours have passed since the the time patient 28447 was admitted to the icu? | select 24 * ( strftime('%j',current_time) - strftime('%j',icustays.intime) ) from icustays where icustays.hadm_id in ( select admissions.hadm_id from admissions where admissions.subject_id = 28447 ) and icustays.outtime is null | mimic_iii | false | 61d77ab7f234bc0bd3aa6393 |
how many hours has passed since patient 80555 was admitted to the intensive care unit? | select 24 * ( strftime('%j',current_time) - strftime('%j',icustays.intime) ) from icustays where icustays.hadm_id in ( select admissions.hadm_id from admissions where admissions.subject_id = 80555 ) and icustays.outtime is null | mimic_iii | false | 6c0febafcaaab35602f91ddf |
how many days is it since patient 31854 has been admitted to icu? | select 1 * ( strftime('%j',current_time) - strftime('%j',icustays.intime) ) from icustays where icustays.hadm_id in ( select admissions.hadm_id from admissions where admissions.subject_id = 31854 ) and icustays.outtime is null | mimic_iii | false | 4196eadef8d42611a2b5471f |
how many hours has elapsed since patient 83038 was admitted in the icu? | select 24 * ( strftime('%j',current_time) - strftime('%j',icustays.intime) ) from icustays where icustays.hadm_id in ( select admissions.hadm_id from admissions where admissions.subject_id = 83038 ) and icustays.outtime is null | mimic_iii | false | aad32746e3768f107527b46d |