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 cost for a beta-2 microglobulin laboratory test? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'beta-2 microglobulin' ) ) | mimic_iii | false | 812296059d4bed1a76cc0e6d |
tell me the cost of a lab test for glucose, ascites? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'glucose, ascites' ) ) | mimic_iii | false | 811d8c043501cf02cddae75d |
how much cost is it to perform methemoglobin lab tests? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'methemoglobin' ) ) | mimic_iii | false | 1e940b8ddbd74ec5a9facfb2 |
what's the cost for a glucose, pleural laboratory test? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'glucose, pleural' ) ) | mimic_iii | false | 21cc20a329ba33715fd405eb |
tell me the cost of a lab bilirubin, total, body fluid test? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'bilirubin, total, body fluid' ) ) | mimic_iii | false | c904a875ef6a435bc0fa273f |
how much do the reptilase time control actually cost? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'reptilase time control' ) ) | mimic_iii | false | 590c43a62c12b58e5ebb5ea4 |
what does a lab hemoglobin test cost? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'hemoglobin' ) ) | mimic_iii | false | 84eee07f72afe7b936e17968 |
what's the price of serum viscosity. | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'serum viscosity' ) ) | mimic_iii | false | 60055458b108d245137aef04 |
how much do the magnesium, urine actually cost? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'magnesium, urine' ) ) | mimic_iii | false | 48dad473490bd169c1007e86 |
how much is the cost of a lab test of glucose, pleural? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'glucose, pleural' ) ) | mimic_iii | false | d755119bc80f92383c6925f6 |
how much does the cost of glucose, ascites are? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'glucose, ascites' ) ) | mimic_iii | false | 2a985da67e7852c0f38f5acc |
how much does it cost for bicarbonate, stool lab tests? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'bicarbonate, stool' ) ) | mimic_iii | false | ad9e6b90d15d4b65fb5b5c15 |
what's the cost for a albumin, ascites laboratory test? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'albumin, ascites' ) ) | mimic_iii | false | 1e6d2e51ca1ab91b661e36b4 |
tell me the price for reptilase time control? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'reptilase time control' ) ) | mimic_iii | false | 557c2359f21ba93e3143e1a3 |
tell me the price for phenytoin, free? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'phenytoin, free' ) ) | mimic_iii | false | fc271829885508fa50825f2e |
how much does it cost to have a sodium, whole blood lab test. | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'sodium, whole blood' ) ) | mimic_iii | false | ca38b28203279167f5869705 |
potassium, whole blood,whats the cost of it? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'potassium, whole blood' ) ) | mimic_iii | false | 5f209f5e97417af1aa8fe5e1 |
how much does it cost for lactate dehydrogenase, pleural lab tests? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'lactate dehydrogenase, pleural' ) ) | mimic_iii | false | 9860d5db1191868b669d8611 |
what are the costs of a reticulocyte count, automated lab test? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'reticulocyte count, automated' ) ) | mimic_iii | false | 45a0a21a22004e96a97284f7 |
tell me the cost of a bilirubin, total, pleural lab test. | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'bilirubin, total, pleural' ) ) | mimic_iii | false | 42ce40d65c3a7b577b6cff85 |
what's the price of ethanol. | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'ethanol' ) ) | mimic_iii | false | 25d2c35d3ca20e8cb180c037 |
how much does the cost of von willebrand factor antigen are? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'von willebrand factor antigen' ) ) | mimic_iii | false | a6256a3ca6451f18059bd6ff |
how much does the cost of testosterone are? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'testosterone' ) ) | mimic_iii | false | 48f50e1feb31e23a13ca49d5 |
what is the cost of the glucose, pleural lab test? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'glucose, pleural' ) ) | mimic_iii | false | 99227e7520f7dbab6ed4a1d9 |
how much is the cost of iron binding capacity, total lab tests? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'iron binding capacity, total' ) ) | mimic_iii | false | ee6266c72d413b607f18315a |
what's the price of quantitative g6pd. | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'quantitative g6pd' ) ) | mimic_iii | false | cc55900e5907f6226de72650 |
what is the cost of the 24 hr creatinine lab test? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = '24 hr creatinine' ) ) | mimic_iii | false | 057e951b7d5bd7239b8ab419 |
tell me the price for bilirubin, total, pleural? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'bilirubin, total, pleural' ) ) | mimic_iii | false | 06108a5bf5b8cbc75a8da472 |
what is the cost for albumin, body fluid lab testing? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'albumin, body fluid' ) ) | mimic_iii | false | 8c1f5e0a0cca09613d3e88ad |
whats the price for a creatinine clearance? | select distinct cost.cost from cost where cost.event_type = 'labevents' and cost.event_id in ( select labevents.row_id from labevents where labevents.itemid in ( select d_labitems.itemid from d_labitems where d_labitems.label = 'creatinine clearance' ) ) | mimic_iii | false | 5b8d83b011e88c5d6c9353d7 |
what's the cost of a drug named multivitamin-12? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'multivitamin-12' ) | mimic_iii | false | 876512d5ba6bbd58e787c83e |
what is the propranolol hcl price? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'propranolol hcl' ) | mimic_iii | false | 09511bf9326ab4dd07c11d95 |
how much fluocinonide 0.05% ointment is it? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'fluocinonide 0.05% ointment' ) | mimic_iii | false | 6f656d59652aa8aa8705d80e |
what is the cost of drug name soma? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'soma' ) | mimic_iii | false | cdd32b54ad232fa3b2bdab2e |
what is the cost of a drug, permethrin? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'permethrin' ) | mimic_iii | false | 17632ce2794638f9ecf96c75 |
what are the prices for sodiu? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'sodiu' ) | mimic_iii | false | 02b35f65f34a20a939f490d0 |
tell me the costs of a drug named bendamustine? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'bendamustine' ) | mimic_iii | false | ce0ebfe40cad9009b17f6ccd |
how much does a drug cost, oxycodone-acetaminophen elixir? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'oxycodone-acetaminophen elixir' ) | mimic_iii | false | 70097df07372a7051b7990bd |
how much does a drug called atazanavir cost. | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'atazanavir' ) | mimic_iii | false | 8a1dbda82f96434009ea25dd |
what was the cost of midazolam? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'midazolam' ) | mimic_iii | false | 360fd5c3dd303fc6e369c3b5 |
how much does it cost multivitamin-12. | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'multivitamin-12' ) | mimic_iii | false | 42a2a57d424b4c77a68e611c |
what are the prices of the drug acetaminophen iv? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'acetaminophen iv' ) | mimic_iii | false | b85d15008c298280a4e659a9 |
what is the price for the lidocaine 2%? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'lidocaine 2%' ) | mimic_iii | false | 59abb39593e828d5e8b2ef1d |
what is the cost of a drug known as anastrozole? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'anastrozole' ) | mimic_iii | false | d72dc7975d2e986c51074f87 |
tell me the price of taking heparin flush (10 units/ml)? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'heparin flush (10 units/ml)' ) | mimic_iii | false | 63e077b4603d945dea3a3fd8 |
what is the pricing for ziprasidone hydrochloride? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'ziprasidone hydrochloride' ) | mimic_iii | false | f494f1b4baa29c2fa10ffd9f |
what's the cost of a drug known as dibucaine? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'dibucaine' ) | mimic_iii | false | 8cf57e3f938bae4949b24966 |
how much does it cost to take a drug called nystatin-triamcinolone cream? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'nystatin-triamcinolone cream' ) | mimic_iii | false | 21a79ba26c5e7769e20514eb |
how much is lidocaine 2% costing? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'lidocaine 2%' ) | mimic_iii | false | bdeeb757b77c7d6308e50134 |
whats the price for emtricitabine. | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'emtricitabine' ) | mimic_iii | false | ed8716382c3bd2834a5e5ae5 |
how much is the cost of a drug called clonidine tts 1 patch? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'clonidine tts 1 patch' ) | mimic_iii | false | 9be6b9955e94ed719011300f |
tricor what is the price? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'tricor' ) | mimic_iii | false | 3bd0d1c5d75fbb2736052f99 |
what does the cost of efavirenz be? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'efavirenz' ) | mimic_iii | false | 122c106134230b7d5b8e7516 |
tell me the cost of a prescription drug called calcium chloride? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'calcium chloride' ) | mimic_iii | false | 167318b5d9fcdc99bd7c56fe |
how much is the price for bystolic? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'bystolic' ) | mimic_iii | false | d05284b8093d606c509fce8d |
what is the cost of a medication named amphotericin b? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'amphotericin b' ) | mimic_iii | false | 75cf2638b37f95e589d34b58 |
what is the cost for a drug named clonidine tts 1 patch? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'clonidine tts 1 patch' ) | mimic_iii | false | 86a9425529a9588a27fc49b0 |
tell me the price of n-acetylcysteine study drug. | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'n-acetylcysteine study drug' ) | mimic_iii | false | b1b7fec34d5c8f7dc27592b8 |
what is the cost for a drug named mul? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'mul' ) | mimic_iii | false | 0cfd151bde96ecfe777fcc0e |
how much does it cost to take a drug called lidocaine-prilocaine? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'lidocaine-prilocaine' ) | mimic_iii | false | 0dccdb89b2808348d00d3eed |
tell me the costs of a drug named emtricitabine? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'emtricitabine' ) | mimic_iii | false | 3e9b8df0b51da67e8ecc6ec0 |
what was the cost of silibinin (*ind*)? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'silibinin (*ind*)' ) | mimic_iii | false | b73a894d3755517517ffa774 |
what does the cost of bendamustine be? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'bendamustine' ) | mimic_iii | false | 52c69ac0d6af9a234e464195 |
what are the prices of the drug dexamethasone? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'dexamethasone' ) | mimic_iii | false | 7336cedd520afcda83f83dd1 |
solution what is the price? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'solution' ) | mimic_iii | false | 2a239ec19a74dc14321eacc8 |
how much is nitrofurantoin monohyd (macrobid) costing? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'nitrofurantoin monohyd (macrobid)' ) | mimic_iii | false | 3260d16d7e4a5077a0199930 |
what is the pricing for nystatin-triamcinolone cream? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'nystatin-triamcinolone cream' ) | mimic_iii | false | bdd2f0911bfd64b2fbf04c8a |
what is the cost of a medication named morphine sulfate sr? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'morphine sulfate sr' ) | mimic_iii | false | 1b359706bb1d295746500dcd |
tell me the price of verapamil sr. | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'verapamil sr' ) | mimic_iii | false | dde6c3e485a0e7f9291d9994 |
what is the price for the oxybutynin? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'oxybutynin' ) | mimic_iii | false | fe3d953c02af40fe4714c641 |
how much is fluocinolone 0.01% cream costing? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'fluocinolone 0.01% cream' ) | mimic_iii | false | 8955b8104aa6d62da1bcd9ca |
morphine sulfate sr what is the price? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'morphine sulfate sr' ) | mimic_iii | false | a93bee2a783ba8760c5e615c |
how much does a drug called isoniazid cost. | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'isoniazid' ) | mimic_iii | false | 2f39cf9080600c554a2f6b22 |
what is the cost of a drug known as albumin 5% (25 g)? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'albumin 5% (25 g)' ) | mimic_iii | false | 807f44bb07b3420284532f93 |
how much is the cost of a drug called dorzolamide 2% ophth. soln.? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'dorzolamide 2% ophth. soln.' ) | mimic_iii | false | 9a76bdf890381b4a21cbbbd4 |
tell me the price of taking syringe (ns)? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'syringe (ns)' ) | mimic_iii | false | 3b95ddcd9098970ce4a1d74c |
what is the cost of a medication named pamidronate? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'pamidronate' ) | mimic_iii | false | 6cdc11961474bf27cadf0a0b |
how much is dorzolamide 2% ophth. soln. costing? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'dorzolamide 2% ophth. soln.' ) | mimic_iii | false | cce2bb6b0f7509071720c906 |
what are the prices for emtricitabine? | select distinct cost.cost from cost where cost.event_type = 'prescriptions' and cost.event_id in ( select prescriptions.row_id from prescriptions where prescriptions.drug = 'emtricitabine' ) | mimic_iii | false | 53ef879463cf203f05c3eb3d |
what is the cost of a diagnosis of open wound site nos? | select distinct cost.cost from cost where cost.event_type = 'diagnoses_icd' and cost.event_id in ( select diagnoses_icd.row_id from diagnoses_icd where diagnoses_icd.icd9_code = ( select d_icd_diagnoses.icd9_code from d_icd_diagnoses where d_icd_diagnoses.short_title = 'open wound site nos' ) ) | mimic_iii | false | bad2c1016f4ff299dcc489da |
how much does it cost to get checked for fall from ladder? | select distinct cost.cost from cost where cost.event_type = 'diagnoses_icd' and cost.event_id in ( select diagnoses_icd.row_id from diagnoses_icd where diagnoses_icd.icd9_code = ( select d_icd_diagnoses.icd9_code from d_icd_diagnoses where d_icd_diagnoses.short_title = 'fall from ladder' ) ) | mimic_iii | false | 8e97490f4b559bc854d7377a |
how much does it cost to get diagnostic of bmi 33.0-33.9,adult? | select distinct cost.cost from cost where cost.event_type = 'diagnoses_icd' and cost.event_id in ( select diagnoses_icd.row_id from diagnoses_icd where diagnoses_icd.icd9_code = ( select d_icd_diagnoses.icd9_code from d_icd_diagnoses where d_icd_diagnoses.short_title = 'bmi 33.0-33.9,adult' ) ) | mimic_iii | false | 996907a5d3ebb8be4279894b |
what is the cost for diagnosis of gal&bil cal w/ac&chr w/o? | select distinct cost.cost from cost where cost.event_type = 'diagnoses_icd' and cost.event_id in ( select diagnoses_icd.row_id from diagnoses_icd where diagnoses_icd.icd9_code = ( select d_icd_diagnoses.icd9_code from d_icd_diagnoses where d_icd_diagnoses.short_title = 'gal&bil cal w/ac&chr w/o' ) ) | mimic_iii | false | c1338891b69ecbafae1cf351 |
tell me the cost of the diagnosis for bleed esoph var oth dis? | select distinct cost.cost from cost where cost.event_type = 'diagnoses_icd' and cost.event_id in ( select diagnoses_icd.row_id from diagnoses_icd where diagnoses_icd.icd9_code = ( select d_icd_diagnoses.icd9_code from d_icd_diagnoses where d_icd_diagnoses.short_title = 'bleed esoph var oth dis' ) ) | mimic_iii | false | c8b0cb63144e380591c9d623 |
tell me the diagnosis cost of duodenitis w hmrhg in a patient? | select distinct cost.cost from cost where cost.event_type = 'diagnoses_icd' and cost.event_id in ( select diagnoses_icd.row_id from diagnoses_icd where diagnoses_icd.icd9_code = ( select d_icd_diagnoses.icd9_code from d_icd_diagnoses where d_icd_diagnoses.short_title = 'duodenitis w hmrhg' ) ) | mimic_iii | false | 217b557d2d585b7cc9605b65 |
what is the diagnostic cost in nonpsychot brain syn nos? | select distinct cost.cost from cost where cost.event_type = 'diagnoses_icd' and cost.event_id in ( select diagnoses_icd.row_id from diagnoses_icd where diagnoses_icd.icd9_code = ( select d_icd_diagnoses.icd9_code from d_icd_diagnoses where d_icd_diagnoses.short_title = 'nonpsychot brain syn nos' ) ) | mimic_iii | false | 4fb28f9fb9b0465b8238fed3 |
whats the cost to get a wbc disease nec diagnosis. | select distinct cost.cost from cost where cost.event_type = 'diagnoses_icd' and cost.event_id in ( select diagnoses_icd.row_id from diagnoses_icd where diagnoses_icd.icd9_code = ( select d_icd_diagnoses.icd9_code from d_icd_diagnoses where d_icd_diagnoses.short_title = 'wbc disease nec' ) ) | mimic_iii | false | ec09329d2965447eae4ca58e |
how much does it cost to check for nonsp abn find-gu organs? | select distinct cost.cost from cost where cost.event_type = 'diagnoses_icd' and cost.event_id in ( select diagnoses_icd.row_id from diagnoses_icd where diagnoses_icd.icd9_code = ( select d_icd_diagnoses.icd9_code from d_icd_diagnoses where d_icd_diagnoses.short_title = 'nonsp abn find-gu organs' ) ) | mimic_iii | false | fa5b629b04576424ec29ac91 |
how much does the cost of a candidiasis of lung diagnosis cost? | select distinct cost.cost from cost where cost.event_type = 'diagnoses_icd' and cost.event_id in ( select diagnoses_icd.row_id from diagnoses_icd where diagnoses_icd.icd9_code = ( select d_icd_diagnoses.icd9_code from d_icd_diagnoses where d_icd_diagnoses.short_title = 'candidiasis of lung' ) ) | mimic_iii | false | 71a9587eac82383d6a464b55 |
what is the cost of a diagnosis for an volume depletion nos? | select distinct cost.cost from cost where cost.event_type = 'diagnoses_icd' and cost.event_id in ( select diagnoses_icd.row_id from diagnoses_icd where diagnoses_icd.icd9_code = ( select d_icd_diagnoses.icd9_code from d_icd_diagnoses where d_icd_diagnoses.short_title = 'volume depletion nos' ) ) | mimic_iii | false | 91aa056b1cad1062bc164f6d |
how much does it cost for a hx of kidney malignancy diagnosis? | select distinct cost.cost from cost where cost.event_type = 'diagnoses_icd' and cost.event_id in ( select diagnoses_icd.row_id from diagnoses_icd where diagnoses_icd.icd9_code = ( select d_icd_diagnoses.icd9_code from d_icd_diagnoses where d_icd_diagnoses.short_title = 'hx of kidney malignancy' ) ) | mimic_iii | false | 1a34f144552c38e64135cc13 |
what does it cost for an gastrostomy infection diagnosis? | select distinct cost.cost from cost where cost.event_type = 'diagnoses_icd' and cost.event_id in ( select diagnoses_icd.row_id from diagnoses_icd where diagnoses_icd.icd9_code = ( select d_icd_diagnoses.icd9_code from d_icd_diagnoses where d_icd_diagnoses.short_title = 'gastrostomy infection' ) ) | mimic_iii | false | 29a8d22f9d44afb99535065d |
what is the cost of meningismus diagnostic? | select distinct cost.cost from cost where cost.event_type = 'diagnoses_icd' and cost.event_id in ( select diagnoses_icd.row_id from diagnoses_icd where diagnoses_icd.icd9_code = ( select d_icd_diagnoses.icd9_code from d_icd_diagnoses where d_icd_diagnoses.short_title = 'meningismus' ) ) | mimic_iii | false | dac485a423817325be93ad58 |
how much does diagnosing a malig neopl kidney cost? | select distinct cost.cost from cost where cost.event_type = 'diagnoses_icd' and cost.event_id in ( select diagnoses_icd.row_id from diagnoses_icd where diagnoses_icd.icd9_code = ( select d_icd_diagnoses.icd9_code from d_icd_diagnoses where d_icd_diagnoses.short_title = 'malig neopl kidney' ) ) | mimic_iii | false | e41f81afb4d3dfc9527a2a13 |
how much is the cost of a accid punc/op lac dura diagnosis? | select distinct cost.cost from cost where cost.event_type = 'diagnoses_icd' and cost.event_id in ( select diagnoses_icd.row_id from diagnoses_icd where diagnoses_icd.icd9_code = ( select d_icd_diagnoses.icd9_code from d_icd_diagnoses where d_icd_diagnoses.short_title = 'accid punc/op lac dura' ) ) | mimic_iii | false | 5255eba62e7466c3dca65b32 |
how much does a medical diagnosis of poisoning-barbiturates cost? | select distinct cost.cost from cost where cost.event_type = 'diagnoses_icd' and cost.event_id in ( select diagnoses_icd.row_id from diagnoses_icd where diagnoses_icd.icd9_code = ( select d_icd_diagnoses.icd9_code from d_icd_diagnoses where d_icd_diagnoses.short_title = 'poisoning-barbiturates' ) ) | mimic_iii | false | 56b679ef7cebded12ed74fcd |
how much does it cost for staphylcocc septicem nos to be diagnosed? | select distinct cost.cost from cost where cost.event_type = 'diagnoses_icd' and cost.event_id in ( select diagnoses_icd.row_id from diagnoses_icd where diagnoses_icd.icd9_code = ( select d_icd_diagnoses.icd9_code from d_icd_diagnoses where d_icd_diagnoses.short_title = 'staphylcocc septicem nos' ) ) | mimic_iii | false | a80082f56e72599092131d1e |
what are the cost of diagnosis for h zoster complicated nec? | select distinct cost.cost from cost where cost.event_type = 'diagnoses_icd' and cost.event_id in ( select diagnoses_icd.row_id from diagnoses_icd where diagnoses_icd.icd9_code = ( select d_icd_diagnoses.icd9_code from d_icd_diagnoses where d_icd_diagnoses.short_title = 'h zoster complicated nec' ) ) | mimic_iii | false | bd4dc39d371421d8c73335a6 |
how much does it cost for a diagnosis of postablat hypothyr nec? | select distinct cost.cost from cost where cost.event_type = 'diagnoses_icd' and cost.event_id in ( select diagnoses_icd.row_id from diagnoses_icd where diagnoses_icd.icd9_code = ( select d_icd_diagnoses.icd9_code from d_icd_diagnoses where d_icd_diagnoses.short_title = 'postablat hypothyr nec' ) ) | mimic_iii | false | a432d79d10f46abca919edaf |
what is the cost of hx-female genit malg nec diagnostic tests? | select distinct cost.cost from cost where cost.event_type = 'diagnoses_icd' and cost.event_id in ( select diagnoses_icd.row_id from diagnoses_icd where diagnoses_icd.icd9_code = ( select d_icd_diagnoses.icd9_code from d_icd_diagnoses where d_icd_diagnoses.short_title = 'hx-female genit malg nec' ) ) | mimic_iii | false | 03922fbba9264fc5320b887c |