Healthcare Associated Infections and Healthcare Associated Conditions
These measures are meant to track and indicate the rate of occurrence of conditions or infections that arise as an outcome or result of medical treatment. Â
Helpful Queries:Â
Getting Measures that are considered HAIs:
select a.* from measures as a, measure_groups_measures as bÂ
where a.measure_id = b.measure_idÂ
 and b.measure_group_id= 48
and a.author_measure_id like 'HA%'
Getting Measures that are considered HACs:
select a.* from measures as a, measure_groups_measures as bÂ
where a.measure_id = b.measure_idÂ
and b.measure_group_id= 49
Getting Measures that are considered either HAIs or HACs:
select a.* from measures as a, measure_groups_measures as bÂ
where a.measure_id = b.measure_idÂ
and b.measure_group_id in (48,49)
and a.author_measure_id like 'HA%'
Measures:
measure_id | author_measure_id | name_official |
12286 | HAI_1 | Central Line-Associated Bloodstream Infections (CLABSI) |
12316 | HAI-2 | Catheter Associated Urinary Tract Infection (CAUTI) |
12317 | HAI-3 | Surgical Site Infection from colon surgery (SSI: Colon) |
12318 | HAI-4 | Surgical Site Infection from abdominal hysterectomy (SSI: Hysterectomy) |
16635 | HAI-5 | Methicillin-resistant Staphylococcus aureus (or MRSA) blood infections |
16636 | HAI-6 | Clostridium difficile (or C.diff.) Infections |
12044 | HAC_1 | Foreign object retained after surgery |
12045 | HAC_2 | Air embolism |
12046 | HAC_3 | Blood Incompatibility |
12047 | HAC_4 | Pressure Ulcer stages III and IV |
12048 | HAC_5 | Falls and Trauma |
12049 | HAC_6 | Vascular Catheter-associated Infection |
12050 | HAC_7 | Catheter-associated Urinary Tract Infection |
12051 | HAC_8 | Manifestations of Poor Glycemic Control |
Â