inputs
stringlengths 25
211
| labels
stringlengths 62
1.22k
| db_id
stringclasses 1
value | is_impossible
bool 1
class | id
stringlengths 24
24
|
---|---|---|---|---|
what were the three most frequently given microbiology tests for patients who had received incis thyroid field nec earlier within the same month since 3 years ago? | select t3.spec_type_desc from ( select t2.spec_type_desc, dense_rank() over ( order by count(*) desc ) as c1 from ( select admissions.subject_id, procedures_icd.charttime from procedures_icd join admissions on procedures_icd.hadm_id = admissions.hadm_id where procedures_icd.icd9_code = ( select d_icd_procedures.icd9_code from d_icd_procedures where d_icd_procedures.short_title = 'incis thyroid field nec' ) and datetime(procedures_icd.charttime) >= datetime(current_time,'-3 year') ) as t1 join ( select admissions.subject_id, microbiologyevents.spec_type_desc, microbiologyevents.charttime from microbiologyevents join admissions on microbiologyevents.hadm_id = admissions.hadm_id where datetime(microbiologyevents.charttime) >= datetime(current_time,'-3 year') ) as t2 on t1.subject_id = t2.subject_id where t1.charttime < t2.charttime and datetime(t1.charttime,'start of month') = datetime(t2.charttime,'start of month') group by t2.spec_type_desc ) as t3 where t3.c1 <= 3 | mimic_iii | false | 22472c209a755819fde4d321 |
what were the top five most frequent microbiology tests given to patients after receiving venous cath nec within the same month until 3 years ago? | select t3.spec_type_desc from ( select t2.spec_type_desc, dense_rank() over ( order by count(*) desc ) as c1 from ( select admissions.subject_id, procedures_icd.charttime from procedures_icd join admissions on procedures_icd.hadm_id = admissions.hadm_id where procedures_icd.icd9_code = ( select d_icd_procedures.icd9_code from d_icd_procedures where d_icd_procedures.short_title = 'venous cath nec' ) and datetime(procedures_icd.charttime) <= datetime(current_time,'-3 year') ) as t1 join ( select admissions.subject_id, microbiologyevents.spec_type_desc, microbiologyevents.charttime from microbiologyevents join admissions on microbiologyevents.hadm_id = admissions.hadm_id where datetime(microbiologyevents.charttime) <= datetime(current_time,'-3 year') ) as t2 on t1.subject_id = t2.subject_id where t1.charttime < t2.charttime and datetime(t1.charttime,'start of month') = datetime(t2.charttime,'start of month') group by t2.spec_type_desc ) as t3 where t3.c1 <= 5 | mimic_iii | false | 7c115854685cf048367b4fb1 |
identify the top three most frequent microbiology tests that patients had during the same hospital visit after receiving percu abdominal drainage in 2103. | select t3.spec_type_desc from ( select t2.spec_type_desc, dense_rank() over ( order by count(*) desc ) as c1 from ( select admissions.subject_id, procedures_icd.charttime, admissions.hadm_id from procedures_icd join admissions on procedures_icd.hadm_id = admissions.hadm_id where procedures_icd.icd9_code = ( select d_icd_procedures.icd9_code from d_icd_procedures where d_icd_procedures.short_title = 'percu abdominal drainage' ) and strftime('%y',procedures_icd.charttime) = '2103' ) as t1 join ( select admissions.subject_id, microbiologyevents.spec_type_desc, microbiologyevents.charttime, admissions.hadm_id from microbiologyevents join admissions on microbiologyevents.hadm_id = admissions.hadm_id where strftime('%y',microbiologyevents.charttime) = '2103' ) as t2 on t1.subject_id = t2.subject_id where t1.charttime < t2.charttime and t1.hadm_id = t2.hadm_id group by t2.spec_type_desc ) as t3 where t3.c1 <= 3 | mimic_iii | false | e186cd5ec77c3d3591efdd79 |
what are the top three most frequent microbiology tests administered to patients during the same month after undergoing peripheral nerve graft during the previous year? | select t3.spec_type_desc from ( select t2.spec_type_desc, dense_rank() over ( order by count(*) desc ) as c1 from ( select admissions.subject_id, procedures_icd.charttime from procedures_icd join admissions on procedures_icd.hadm_id = admissions.hadm_id where procedures_icd.icd9_code = ( select d_icd_procedures.icd9_code from d_icd_procedures where d_icd_procedures.short_title = 'peripheral nerve graft' ) and datetime(procedures_icd.charttime,'start of year') = datetime(current_time,'start of year','-1 year') ) as t1 join ( select admissions.subject_id, microbiologyevents.spec_type_desc, microbiologyevents.charttime from microbiologyevents join admissions on microbiologyevents.hadm_id = admissions.hadm_id where datetime(microbiologyevents.charttime,'start of year') = datetime(current_time,'start of year','-1 year') ) as t2 on t1.subject_id = t2.subject_id where t1.charttime < t2.charttime and datetime(t1.charttime,'start of month') = datetime(t2.charttime,'start of month') group by t2.spec_type_desc ) as t3 where t3.c1 <= 3 | mimic_iii | false | 65784644a2e6e2caaa560cbf |
what are the five most common microbiology tests that patients had within 2 months after receiving colonoscopy the previous year? | select t3.spec_type_desc from ( select t2.spec_type_desc, dense_rank() over ( order by count(*) desc ) as c1 from ( select admissions.subject_id, procedures_icd.charttime from procedures_icd join admissions on procedures_icd.hadm_id = admissions.hadm_id where procedures_icd.icd9_code = ( select d_icd_procedures.icd9_code from d_icd_procedures where d_icd_procedures.short_title = 'colonoscopy' ) and datetime(procedures_icd.charttime,'start of year') = datetime(current_time,'start of year','-1 year') ) as t1 join ( select admissions.subject_id, microbiologyevents.spec_type_desc, microbiologyevents.charttime from microbiologyevents join admissions on microbiologyevents.hadm_id = admissions.hadm_id where datetime(microbiologyevents.charttime,'start of year') = datetime(current_time,'start of year','-1 year') ) as t2 on t1.subject_id = t2.subject_id where t1.charttime < t2.charttime and datetime(t2.charttime) between datetime(t1.charttime) and datetime(t1.charttime,'+2 month') group by t2.spec_type_desc ) as t3 where t3.c1 <= 5 | mimic_iii | false | 5ed9d0666b7ab7cf78772f46 |
since 2 years ago, what are the top three most frequent microbiology tests ordered for patients within the same month after receiving the endosc remove bile stone? | select t3.spec_type_desc from ( select t2.spec_type_desc, dense_rank() over ( order by count(*) desc ) as c1 from ( select admissions.subject_id, procedures_icd.charttime from procedures_icd join admissions on procedures_icd.hadm_id = admissions.hadm_id where procedures_icd.icd9_code = ( select d_icd_procedures.icd9_code from d_icd_procedures where d_icd_procedures.short_title = 'endosc remove bile stone' ) and datetime(procedures_icd.charttime) >= datetime(current_time,'-2 year') ) as t1 join ( select admissions.subject_id, microbiologyevents.spec_type_desc, microbiologyevents.charttime from microbiologyevents join admissions on microbiologyevents.hadm_id = admissions.hadm_id where datetime(microbiologyevents.charttime) >= datetime(current_time,'-2 year') ) as t2 on t1.subject_id = t2.subject_id where t1.charttime < t2.charttime and datetime(t1.charttime,'start of month') = datetime(t2.charttime,'start of month') group by t2.spec_type_desc ) as t3 where t3.c1 <= 3 | mimic_iii | false | 6d5c4690bde26a2aca4abb06 |
what were the three most ordered microbiology tests for patients who have previously received oth extraoc mus-tend op within the same month during the last year? | select t3.spec_type_desc from ( select t2.spec_type_desc, dense_rank() over ( order by count(*) desc ) as c1 from ( select admissions.subject_id, procedures_icd.charttime from procedures_icd join admissions on procedures_icd.hadm_id = admissions.hadm_id where procedures_icd.icd9_code = ( select d_icd_procedures.icd9_code from d_icd_procedures where d_icd_procedures.short_title = 'oth extraoc mus-tend op' ) and datetime(procedures_icd.charttime,'start of year') = datetime(current_time,'start of year','-1 year') ) as t1 join ( select admissions.subject_id, microbiologyevents.spec_type_desc, microbiologyevents.charttime from microbiologyevents join admissions on microbiologyevents.hadm_id = admissions.hadm_id where datetime(microbiologyevents.charttime,'start of year') = datetime(current_time,'start of year','-1 year') ) as t2 on t1.subject_id = t2.subject_id where t1.charttime < t2.charttime and datetime(t1.charttime,'start of month') = datetime(t2.charttime,'start of month') group by t2.spec_type_desc ) as t3 where t3.c1 <= 3 | mimic_iii | false | 280ad47e291f1f56b984cea0 |
what were the three most commonly ordered microbiology tests for patients who previously received a percu abdominal drainage during the same hospital encounter since 4 years ago? | select t3.spec_type_desc from ( select t2.spec_type_desc, dense_rank() over ( order by count(*) desc ) as c1 from ( select admissions.subject_id, procedures_icd.charttime, admissions.hadm_id from procedures_icd join admissions on procedures_icd.hadm_id = admissions.hadm_id where procedures_icd.icd9_code = ( select d_icd_procedures.icd9_code from d_icd_procedures where d_icd_procedures.short_title = 'percu abdominal drainage' ) and datetime(procedures_icd.charttime) >= datetime(current_time,'-4 year') ) as t1 join ( select admissions.subject_id, microbiologyevents.spec_type_desc, microbiologyevents.charttime, admissions.hadm_id from microbiologyevents join admissions on microbiologyevents.hadm_id = admissions.hadm_id where datetime(microbiologyevents.charttime) >= datetime(current_time,'-4 year') ) as t2 on t1.subject_id = t2.subject_id where t1.charttime < t2.charttime and t1.hadm_id = t2.hadm_id group by t2.spec_type_desc ) as t3 where t3.c1 <= 3 | mimic_iii | false | 74fb94c84959183890d46b11 |
what are the three most commonly ordered microbiology tests for patients who had previously had opn fx red w int fix nec within the same month, until 4 years ago? | select t3.spec_type_desc from ( select t2.spec_type_desc, dense_rank() over ( order by count(*) desc ) as c1 from ( select admissions.subject_id, procedures_icd.charttime from procedures_icd join admissions on procedures_icd.hadm_id = admissions.hadm_id where procedures_icd.icd9_code = ( select d_icd_procedures.icd9_code from d_icd_procedures where d_icd_procedures.short_title = 'opn fx red w int fix nec' ) and datetime(procedures_icd.charttime) <= datetime(current_time,'-4 year') ) as t1 join ( select admissions.subject_id, microbiologyevents.spec_type_desc, microbiologyevents.charttime from microbiologyevents join admissions on microbiologyevents.hadm_id = admissions.hadm_id where datetime(microbiologyevents.charttime) <= datetime(current_time,'-4 year') ) as t2 on t1.subject_id = t2.subject_id where t1.charttime < t2.charttime and datetime(t1.charttime,'start of month') = datetime(t2.charttime,'start of month') group by t2.spec_type_desc ) as t3 where t3.c1 <= 3 | mimic_iii | false | 1168b38c81a0f5ff90e09861 |
what were the three most common microbiological tests that followed in the same hospital visit for patients who took inject into thorax cavit? | select t3.spec_type_desc from ( select t2.spec_type_desc, dense_rank() over ( order by count(*) desc ) as c1 from ( select admissions.subject_id, procedures_icd.charttime, admissions.hadm_id from procedures_icd join admissions on procedures_icd.hadm_id = admissions.hadm_id where procedures_icd.icd9_code = ( select d_icd_procedures.icd9_code from d_icd_procedures where d_icd_procedures.short_title = 'inject into thorax cavit' ) ) as t1 join ( select admissions.subject_id, microbiologyevents.spec_type_desc, microbiologyevents.charttime, admissions.hadm_id from microbiologyevents join admissions on microbiologyevents.hadm_id = admissions.hadm_id ) as t2 on t1.subject_id = t2.subject_id where t1.charttime < t2.charttime and t1.hadm_id = t2.hadm_id group by t2.spec_type_desc ) as t3 where t3.c1 <= 3 | mimic_iii | false | 53c99f58f1885148cd1b2ea5 |
list the three most common microbiology tests done on patients who have previously received other brain incision within 2 months during the last year? | select t3.spec_type_desc from ( select t2.spec_type_desc, dense_rank() over ( order by count(*) desc ) as c1 from ( select admissions.subject_id, procedures_icd.charttime from procedures_icd join admissions on procedures_icd.hadm_id = admissions.hadm_id where procedures_icd.icd9_code = ( select d_icd_procedures.icd9_code from d_icd_procedures where d_icd_procedures.short_title = 'other brain incision' ) and datetime(procedures_icd.charttime,'start of year') = datetime(current_time,'start of year','-1 year') ) as t1 join ( select admissions.subject_id, microbiologyevents.spec_type_desc, microbiologyevents.charttime from microbiologyevents join admissions on microbiologyevents.hadm_id = admissions.hadm_id where datetime(microbiologyevents.charttime,'start of year') = datetime(current_time,'start of year','-1 year') ) as t2 on t1.subject_id = t2.subject_id where t1.charttime < t2.charttime and datetime(t2.charttime) between datetime(t1.charttime) and datetime(t1.charttime,'+2 month') group by t2.spec_type_desc ) as t3 where t3.c1 <= 3 | mimic_iii | false | ff8a572137c13ce9337dee3d |
what were the five most frequent microbiology tests ordered for patients who received venous cath nec earlier in the same hospital visit until 2102? | select t3.spec_type_desc from ( select t2.spec_type_desc, dense_rank() over ( order by count(*) desc ) as c1 from ( select admissions.subject_id, procedures_icd.charttime, admissions.hadm_id from procedures_icd join admissions on procedures_icd.hadm_id = admissions.hadm_id where procedures_icd.icd9_code = ( select d_icd_procedures.icd9_code from d_icd_procedures where d_icd_procedures.short_title = 'venous cath nec' ) and strftime('%y',procedures_icd.charttime) <= '2102' ) as t1 join ( select admissions.subject_id, microbiologyevents.spec_type_desc, microbiologyevents.charttime, admissions.hadm_id from microbiologyevents join admissions on microbiologyevents.hadm_id = admissions.hadm_id where strftime('%y',microbiologyevents.charttime) <= '2102' ) as t2 on t1.subject_id = t2.subject_id where t1.charttime < t2.charttime and t1.hadm_id = t2.hadm_id group by t2.spec_type_desc ) as t3 where t3.c1 <= 5 | mimic_iii | false | af86d0587a2b0711cfe6bd9f |
since 2104, what were the top four most frequent microbiology tests given to patients within 2 months after receiving a other gastrostomy? | select t3.spec_type_desc from ( select t2.spec_type_desc, dense_rank() over ( order by count(*) desc ) as c1 from ( select admissions.subject_id, procedures_icd.charttime from procedures_icd join admissions on procedures_icd.hadm_id = admissions.hadm_id where procedures_icd.icd9_code = ( select d_icd_procedures.icd9_code from d_icd_procedures where d_icd_procedures.short_title = 'other gastrostomy' ) and strftime('%y',procedures_icd.charttime) >= '2104' ) as t1 join ( select admissions.subject_id, microbiologyevents.spec_type_desc, microbiologyevents.charttime from microbiologyevents join admissions on microbiologyevents.hadm_id = admissions.hadm_id where strftime('%y',microbiologyevents.charttime) >= '2104' ) as t2 on t1.subject_id = t2.subject_id where t1.charttime < t2.charttime and datetime(t2.charttime) between datetime(t1.charttime) and datetime(t1.charttime,'+2 month') group by t2.spec_type_desc ) as t3 where t3.c1 <= 4 | mimic_iii | false | 6e3ed14ffbce821388c82ba6 |
what were the four most commonly given microbiology tests a year before for patients who had previously undergone packed cell transfusion within the same hospital visit? | select t3.spec_type_desc from ( select t2.spec_type_desc, dense_rank() over ( order by count(*) desc ) as c1 from ( select admissions.subject_id, procedures_icd.charttime, admissions.hadm_id from procedures_icd join admissions on procedures_icd.hadm_id = admissions.hadm_id where procedures_icd.icd9_code = ( select d_icd_procedures.icd9_code from d_icd_procedures where d_icd_procedures.short_title = 'packed cell transfusion' ) and datetime(procedures_icd.charttime,'start of year') = datetime(current_time,'start of year','-1 year') ) as t1 join ( select admissions.subject_id, microbiologyevents.spec_type_desc, microbiologyevents.charttime, admissions.hadm_id from microbiologyevents join admissions on microbiologyevents.hadm_id = admissions.hadm_id where datetime(microbiologyevents.charttime,'start of year') = datetime(current_time,'start of year','-1 year') ) as t2 on t1.subject_id = t2.subject_id where t1.charttime < t2.charttime and t1.hadm_id = t2.hadm_id group by t2.spec_type_desc ) as t3 where t3.c1 <= 4 | mimic_iii | false | 92e769b46a1cd3e11b57d386 |
what are the five most commonly prescribed microbiology tests for patients who had previously received opn/oth rep mtrl vlv-tis within 2 months in 2103? | select t3.spec_type_desc from ( select t2.spec_type_desc, dense_rank() over ( order by count(*) desc ) as c1 from ( select admissions.subject_id, procedures_icd.charttime from procedures_icd join admissions on procedures_icd.hadm_id = admissions.hadm_id where procedures_icd.icd9_code = ( select d_icd_procedures.icd9_code from d_icd_procedures where d_icd_procedures.short_title = 'opn/oth rep mtrl vlv-tis' ) and strftime('%y',procedures_icd.charttime) = '2103' ) as t1 join ( select admissions.subject_id, microbiologyevents.spec_type_desc, microbiologyevents.charttime from microbiologyevents join admissions on microbiologyevents.hadm_id = admissions.hadm_id where strftime('%y',microbiologyevents.charttime) = '2103' ) as t2 on t1.subject_id = t2.subject_id where t1.charttime < t2.charttime and datetime(t2.charttime) between datetime(t1.charttime) and datetime(t1.charttime,'+2 month') group by t2.spec_type_desc ) as t3 where t3.c1 <= 5 | mimic_iii | false | 0f57c874d49717e24814cc43 |
what are the four most commonly prescribed microbiology tests for patients who had previously received arterial catheterization during the same month last year? | select t3.spec_type_desc from ( select t2.spec_type_desc, dense_rank() over ( order by count(*) desc ) as c1 from ( select admissions.subject_id, procedures_icd.charttime from procedures_icd join admissions on procedures_icd.hadm_id = admissions.hadm_id where procedures_icd.icd9_code = ( select d_icd_procedures.icd9_code from d_icd_procedures where d_icd_procedures.short_title = 'arterial catheterization' ) and datetime(procedures_icd.charttime,'start of year') = datetime(current_time,'start of year','-1 year') ) as t1 join ( select admissions.subject_id, microbiologyevents.spec_type_desc, microbiologyevents.charttime from microbiologyevents join admissions on microbiologyevents.hadm_id = admissions.hadm_id where datetime(microbiologyevents.charttime,'start of year') = datetime(current_time,'start of year','-1 year') ) as t2 on t1.subject_id = t2.subject_id where t1.charttime < t2.charttime and datetime(t1.charttime,'start of month') = datetime(t2.charttime,'start of month') group by t2.spec_type_desc ) as t3 where t3.c1 <= 4 | mimic_iii | false | b5ff9249ed2b09689f8c806d |
what are the four most frequent microbiological tests given to patients in the same month after receiving insert gastric tube nec? | select t3.spec_type_desc from ( select t2.spec_type_desc, dense_rank() over ( order by count(*) desc ) as c1 from ( select admissions.subject_id, procedures_icd.charttime from procedures_icd join admissions on procedures_icd.hadm_id = admissions.hadm_id where procedures_icd.icd9_code = ( select d_icd_procedures.icd9_code from d_icd_procedures where d_icd_procedures.short_title = 'insert gastric tube nec' ) ) as t1 join ( select admissions.subject_id, microbiologyevents.spec_type_desc, microbiologyevents.charttime from microbiologyevents join admissions on microbiologyevents.hadm_id = admissions.hadm_id ) as t2 on t1.subject_id = t2.subject_id where t1.charttime < t2.charttime and datetime(t1.charttime,'start of month') = datetime(t2.charttime,'start of month') group by t2.spec_type_desc ) as t3 where t3.c1 <= 4 | mimic_iii | false | a1fe5a51ae3457a0e220c04b |
what were the three most frequently ordered microbiology tests for patients who had previously received percu abdominal drainage within the same hospital visit, in 2103? | select t3.spec_type_desc from ( select t2.spec_type_desc, dense_rank() over ( order by count(*) desc ) as c1 from ( select admissions.subject_id, procedures_icd.charttime, admissions.hadm_id from procedures_icd join admissions on procedures_icd.hadm_id = admissions.hadm_id where procedures_icd.icd9_code = ( select d_icd_procedures.icd9_code from d_icd_procedures where d_icd_procedures.short_title = 'percu abdominal drainage' ) and strftime('%y',procedures_icd.charttime) = '2103' ) as t1 join ( select admissions.subject_id, microbiologyevents.spec_type_desc, microbiologyevents.charttime, admissions.hadm_id from microbiologyevents join admissions on microbiologyevents.hadm_id = admissions.hadm_id where strftime('%y',microbiologyevents.charttime) = '2103' ) as t2 on t1.subject_id = t2.subject_id where t1.charttime < t2.charttime and t1.hadm_id = t2.hadm_id group by t2.spec_type_desc ) as t3 where t3.c1 <= 3 | mimic_iii | false | 93127e2b54ce4145c9b9914a |
what are the three most commonly ordered microbiology tests for patients who have had previous other phototherapy during the same month, during this year? | select t3.spec_type_desc from ( select t2.spec_type_desc, dense_rank() over ( order by count(*) desc ) as c1 from ( select admissions.subject_id, procedures_icd.charttime from procedures_icd join admissions on procedures_icd.hadm_id = admissions.hadm_id where procedures_icd.icd9_code = ( select d_icd_procedures.icd9_code from d_icd_procedures where d_icd_procedures.short_title = 'other phototherapy' ) and datetime(procedures_icd.charttime,'start of year') = datetime(current_time,'start of year','-0 year') ) as t1 join ( select admissions.subject_id, microbiologyevents.spec_type_desc, microbiologyevents.charttime from microbiologyevents join admissions on microbiologyevents.hadm_id = admissions.hadm_id where datetime(microbiologyevents.charttime,'start of year') = datetime(current_time,'start of year','-0 year') ) as t2 on t1.subject_id = t2.subject_id where t1.charttime < t2.charttime and datetime(t1.charttime,'start of month') = datetime(t2.charttime,'start of month') group by t2.spec_type_desc ) as t3 where t3.c1 <= 3 | mimic_iii | false | d35a2e24513ff5d56e882d7c |
what is the top four most common intake in 2101? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where strftime('%y',inputevents_cv.charttime) = '2101' group by inputevents_cv.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | ea0e3f5a0e046ad311cdcde6 |
what were the top four most frequent inputs event in 2104? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where strftime('%y',inputevents_cv.charttime) = '2104' group by inputevents_cv.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | 03396d2b4e781ff2bd0e4a91 |
what were five of the most frequent intakes since 2102? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where strftime('%y',inputevents_cv.charttime) >= '2102' group by inputevents_cv.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | ae7bb36af87232f7b1f0bbb8 |
tell me the top three of the most common intakes the previous year? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime,'start of year') = datetime(current_time,'start of year','-1 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | a7f97de979d71b52fe9cb9e2 |
tell me what were the five most common intakes since 2 years ago? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime) >= datetime(current_time,'-2 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | ad7b40c4c46d624dbcf0df36 |
what are the four most frequent intakes in 2100? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where strftime('%y',inputevents_cv.charttime) = '2100' group by inputevents_cv.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | 2ea5170a8054323f95f1eadd |
in a year before, what were the three most common input events? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime,'start of year') = datetime(current_time,'start of year','-1 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | bcd5861e59b295a560e34a7e |
what were the three most common intakes in 2100? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where strftime('%y',inputevents_cv.charttime) = '2100' group by inputevents_cv.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | f2767bd4530f602004763925 |
what are the top three frequent input events the last year? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime,'start of year') = datetime(current_time,'start of year','-1 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | b0b65fa3526aa486591cd282 |
tell me the three most common intakes in 2100? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where strftime('%y',inputevents_cv.charttime) = '2100' group by inputevents_cv.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | 05b4dbd897d8dd73e73b1d37 |
what are the three most frequently input events until 3 years ago? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime) <= datetime(current_time,'-3 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | 87c517318165c96f7d14e553 |
until 3 years ago, what were the top five most common intakes? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime) <= datetime(current_time,'-3 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | 8e48fe40868e76aa49c94e83 |
tell me what are the top three most common intakes during a year before? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime,'start of year') = datetime(current_time,'start of year','-1 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | 41805e0110ffaba0e4d7cc8f |
what were the top five frequent input events until 2101? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where strftime('%y',inputevents_cv.charttime) <= '2101' group by inputevents_cv.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | e6c39b430f843b93b4583e52 |
what is the five, the most frequent input event until 2101? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where strftime('%y',inputevents_cv.charttime) <= '2101' group by inputevents_cv.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | 1f0f81f2576255274ff27e65 |
provide me with the top five most common intake in 2103? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where strftime('%y',inputevents_cv.charttime) = '2103' group by inputevents_cv.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | 4ba0563f0476746bc0de6216 |
what is four of the most frequent intakes since 3 years ago? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime) >= datetime(current_time,'-3 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | 91e3609a25441e6242b2ef32 |
what is the top four of the frequent input event since 2103? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where strftime('%y',inputevents_cv.charttime) >= '2103' group by inputevents_cv.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | 0499237fce27f25468f2874d |
what is three of the most common intakes? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv group by inputevents_cv.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | aa9aa12be4bbdf48981292ca |
tell me the top five frequent input events in this year? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime,'start of year') = datetime(current_time,'start of year','-0 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | 8fefd723fbf4e667314fb78a |
what were the top five most common intakes this year? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime,'start of year') = datetime(current_time,'start of year','-0 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | 7001e7e10e2bd2765d8d0de5 |
what is three of the most frequent intake until 2102? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where strftime('%y',inputevents_cv.charttime) <= '2102' group by inputevents_cv.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | afadd2e7bebc60786c18cae7 |
what's the three most frequent input event since 3 years ago? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime) >= datetime(current_time,'-3 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | 089345be199c0a62ea169c9a |
what are the four most frequent intakes since 2104? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where strftime('%y',inputevents_cv.charttime) >= '2104' group by inputevents_cv.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | 75be0864088f6de5b98473ea |
what's the five most frequent input event since 2105? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where strftime('%y',inputevents_cv.charttime) >= '2105' group by inputevents_cv.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | 6151440ded6f13e53770f1b1 |
until 1 year ago, what were the four most common input events? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime) <= datetime(current_time,'-1 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | 98e915f2925401837f798117 |
what were the three most common intakes since 2 years ago? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime) >= datetime(current_time,'-2 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | f4385c94ce38cd19730c0077 |
provide me with the top five most common intake until 2100? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where strftime('%y',inputevents_cv.charttime) <= '2100' group by inputevents_cv.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | fc5ad282a72e0a956b38b711 |
what's the three most frequent input event until 3 years ago? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime) <= datetime(current_time,'-3 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | 700c970f295c89347b7cf01d |
since 1 year ago, what were the top five most common intakes? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime) >= datetime(current_time,'-1 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | c50cc78d02061f3687d78b96 |
what is the top five of the frequent input event in 2105? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where strftime('%y',inputevents_cv.charttime) = '2105' group by inputevents_cv.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | 92d3a15edf2390938242e24f |
tell me the top five of the most common intakes a year before? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime,'start of year') = datetime(current_time,'start of year','-1 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | 832ad79ab9286d8b55ed7022 |
what is the three, the most frequent input event in 2102? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where strftime('%y',inputevents_cv.charttime) = '2102' group by inputevents_cv.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | a1f7c141829d32ddae487ce4 |
what is the five, the most frequent input event in this year? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime,'start of year') = datetime(current_time,'start of year','-0 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | 8de3e2a973d84b33e2906ab6 |
what are the top three frequent input events until 3 years ago? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime) <= datetime(current_time,'-3 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | 043aa901b3ac792ccfd6f440 |
until 2104, what were the four most common input events? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where strftime('%y',inputevents_cv.charttime) <= '2104' group by inputevents_cv.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | 02a1eb99c81afa19fcbf4356 |
tell me the top five of the most common intakes in 2101? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where strftime('%y',inputevents_cv.charttime) = '2101' group by inputevents_cv.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | a6f91c7369825cf43325574d |
what are the three most frequently input events? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv group by inputevents_cv.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | 6b7696ff9fdb24ede1ef9be8 |
what were the top five frequent input events in 2103? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where strftime('%y',inputevents_cv.charttime) = '2103' group by inputevents_cv.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | 483f77d18c82cf18422982d0 |
what is the four, the most frequent input event in 2102? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where strftime('%y',inputevents_cv.charttime) = '2102' group by inputevents_cv.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | 30619804b87b8627b3bc7768 |
what were three of the most frequent intakes until 2 years ago? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime) <= datetime(current_time,'-2 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | 37a6c416fd2c8f1a4fd51a47 |
what were the top three most frequent inputs event since 5 years ago? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime) >= datetime(current_time,'-5 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | 87a72f9e1e3db2a7e25d7b44 |
what were the four most common intakes this year? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime,'start of year') = datetime(current_time,'start of year','-0 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | ae4172f1dc7565c1f1aec468 |
what are the top three frequent input events until 2 years ago? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select inputevents_cv.itemid, dense_rank() over ( order by count(*) desc ) as c1 from inputevents_cv where datetime(inputevents_cv.charttime) <= datetime(current_time,'-2 year') group by inputevents_cv.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | edd387bce6b13eaf378f0913 |
tell me what are the top four most common output events until 3 years ago? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where datetime(outputevents.charttime) <= datetime(current_time,'-3 year') group by outputevents.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | 470a11333554fe9d4adabafd |
show me the top three of the most common output event since 2101? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where strftime('%y',outputevents.charttime) >= '2101' group by outputevents.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | 955004873e6e04370332b468 |
what is the top four most frequent output event until 3 years ago? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where datetime(outputevents.charttime) <= datetime(current_time,'-3 year') group by outputevents.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | 7313c5051f9407a46d2bd037 |
what are the three most frequent events in the output in this year? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where datetime(outputevents.charttime,'start of year') = datetime(current_time,'start of year','-0 year') group by outputevents.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | 97fa37ce97b692c457d09755 |
show me the top five most common output events in a year before? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where datetime(outputevents.charttime,'start of year') = datetime(current_time,'start of year','-1 year') group by outputevents.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | 2fe5acf1810904e8370b4f7a |
what were the top four most common output events? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents group by outputevents.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | 5f03e380c40da535fc510aa4 |
tell me the top five output events that happened since 2100? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where strftime('%y',outputevents.charttime) >= '2100' group by outputevents.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | 64a5b92e90f6f9933bdf4fc8 |
what are the five most frequent output event until 2102? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where strftime('%y',outputevents.charttime) <= '2102' group by outputevents.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | d8a0da6f1727fd08927006db |
tell me the top three most common output event last year? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where datetime(outputevents.charttime,'start of year') = datetime(current_time,'start of year','-1 year') group by outputevents.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | a3ed754020477c189c4a6b86 |
what are the five most frequently occurrences of output events since 2 years ago? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where datetime(outputevents.charttime) >= datetime(current_time,'-2 year') group by outputevents.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | 79f97ca35b114f139364002f |
what were the three frequent output events that happened until 2100? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where strftime('%y',outputevents.charttime) <= '2100' group by outputevents.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | 9388fa2d4d4cbed693ee0f72 |
since 2102 tell me the three most common output events? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where strftime('%y',outputevents.charttime) >= '2102' group by outputevents.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | 1e3b4ee1dd76df6cefe5c3f8 |
in the previous year, what was the four of the most frequent output events? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where datetime(outputevents.charttime,'start of year') = datetime(current_time,'start of year','-1 year') group by outputevents.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | 3d65c9ecdce1b300b5a638cf |
show me the five most frequent output events since 2105? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where strftime('%y',outputevents.charttime) >= '2105' group by outputevents.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | 71cfe1cebd10bd89e93ba21d |
tell me what the top four most common output events during the previous year were. | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where datetime(outputevents.charttime,'start of year') = datetime(current_time,'start of year','-1 year') group by outputevents.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | 2bfdcd7eb6226ed235899365 |
what was the top three of the most common output events that occurred in 2105? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where strftime('%y',outputevents.charttime) = '2105' group by outputevents.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | 78fe592ff88fe626539f5b99 |
what are the top four of the most frequent output event in 2100? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where strftime('%y',outputevents.charttime) = '2100' group by outputevents.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | c162bb693410bddebc0d0b33 |
retrieve the top five most common output events until 2100? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where strftime('%y',outputevents.charttime) <= '2100' group by outputevents.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | 796e27d89902e5c07a14910a |
in 2103 what is the top four most frequent output event? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where strftime('%y',outputevents.charttime) = '2103' group by outputevents.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | 3d69c864ef793edc052dda9e |
what are the top five output events that are most common in 2100? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where strftime('%y',outputevents.charttime) = '2100' group by outputevents.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | ae3aef960d525b804b00cfb6 |
tell me the top three most common output events until 2101? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where strftime('%y',outputevents.charttime) <= '2101' group by outputevents.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | bef0feca8357aa3bff01ee45 |
give me the top four of the most common output events? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents group by outputevents.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | c8952e66d88b21aa0c08c2f1 |
tell me what are the four most common output events since 2103? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where strftime('%y',outputevents.charttime) >= '2103' group by outputevents.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | e204fac66089536413c3d508 |
since 6 years ago retrieve the top three most common output events? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where datetime(outputevents.charttime) >= datetime(current_time,'-6 year') group by outputevents.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | a74c2c682b03d7e1d8eac697 |
tell me the four most common output events until 4 years ago? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where datetime(outputevents.charttime) <= datetime(current_time,'-4 year') group by outputevents.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | 697ee500352cef1a1cbd6469 |
what were the four most frequent output events until 2101? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where strftime('%y',outputevents.charttime) <= '2101' group by outputevents.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | b030d0f3397a3cc2c7912c1f |
give me the five most common output events since 2 years ago? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where datetime(outputevents.charttime) >= datetime(current_time,'-2 year') group by outputevents.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | facf7915550072b695ff9df1 |
what is the five of the most common output events since 2101? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where strftime('%y',outputevents.charttime) >= '2101' group by outputevents.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | dcf7d2ba695346aae06d6bda |
tell me the top three most common output events that were until 2103? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where strftime('%y',outputevents.charttime) <= '2103' group by outputevents.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | 9cfb281a02104c0424eac88c |
what were the four most frequent event in the output until 2102? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where strftime('%y',outputevents.charttime) <= '2102' group by outputevents.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | 9278f6edb0bc34fddf6bc273 |
what is the four event that is frequent in the output? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents group by outputevents.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | 9d2874c7699054424fe6cecb |
what are the top five most common output events since 5 years ago? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where datetime(outputevents.charttime) >= datetime(current_time,'-5 year') group by outputevents.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | aa983b712490bc9284ec16d0 |
what is the top four most frequent output events during this year? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where datetime(outputevents.charttime,'start of year') = datetime(current_time,'start of year','-0 year') group by outputevents.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | bc32e97de469c9815a05265d |
give me the top four most common output events until 2 years ago. | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where datetime(outputevents.charttime) <= datetime(current_time,'-2 year') group by outputevents.itemid ) as t1 where t1.c1 <= 4 ) | mimic_iii | false | 91efdbe9ab62097d20467bb2 |
what was the top five of the most common output events that occurred during this year? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where datetime(outputevents.charttime,'start of year') = datetime(current_time,'start of year','-0 year') group by outputevents.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | 1943efb60810bb90e1f95de1 |
tell me the three most common output events until 2101? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where strftime('%y',outputevents.charttime) <= '2101' group by outputevents.itemid ) as t1 where t1.c1 <= 3 ) | mimic_iii | false | ad8341f7af91247c70d3c061 |
tell me the top five most common output events that were in this year? | select d_items.label from d_items where d_items.itemid in ( select t1.itemid from ( select outputevents.itemid, dense_rank() over ( order by count(*) desc ) as c1 from outputevents where datetime(outputevents.charttime,'start of year') = datetime(current_time,'start of year','-0 year') group by outputevents.itemid ) as t1 where t1.c1 <= 5 ) | mimic_iii | false | 7a7cd7663658485c7fe679a2 |