Total admissions ICU/Med

From CCMDB Wiki
Revision as of 20:04, 2018 December 5 by TOstryzniuk (talk | contribs)
Jump to navigation Jump to search

Total number of encounters in the ICU and Medicine in Database: CCMDB.

This article is tagged to be reviewed periodically. The next scheduled review is on 2019-06-01.

Database Total Records current to date
Critical Care 121,860 2018-12-05
Medicine 170,057 2018-12-05
TOTAL 291,917 2018-12-05

Data Collection Start Dates for each Hospital in Region Go to: Site and Location table

SQL

To generate a per-unit count in Access paste the following:

SELECT Count(L_Log.D_ID) AS CountOfD_ID, s_dispo.program
FROM L_Log INNER JOIN s_dispo ON L_Log.Service_Location = s_dispo.dispo_ID
GROUP BY s_dispo.program;