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_idauthor_measure_idname_official
12286HAI_1Central Line-Associated Bloodstream Infections (CLABSI)
12316HAI-2Catheter Associated Urinary Tract Infection (CAUTI)
12317HAI-3Surgical Site Infection from colon surgery (SSI: Colon)
12318HAI-4Surgical Site Infection from abdominal hysterectomy (SSI: Hysterectomy)
16635HAI-5Methicillin-resistant Staphylococcus aureus (or MRSA) blood infections
16636HAI-6Clostridium difficile (or C.diff.) Infections
12044HAC_1Foreign object retained after surgery
12045HAC_2Air embolism
12046HAC_3Blood Incompatibility
12047HAC_4Pressure Ulcer stages III and IV
12048HAC_5Falls and Trauma
12049HAC_6Vascular Catheter-associated Infection
12050HAC_7Catheter-associated Urinary Tract Infection
12051HAC_8Manifestations of Poor Glycemic Control

Â