Total admissions ICU/Med: Difference between revisions
Jump to navigation
Jump to search
TOstryzniuk (talk | contribs) m minor |
TOstryzniuk (talk | contribs) mNo edit summary |
||
| Line 2: | Line 2: | ||
{{Article needing periodic review | {{Article needing periodic review | ||
| NextReviewDate = 2018- | | NextReviewDate = 2018-10-12 | ||
}} | }} | ||
| Line 13: | Line 13: | ||
|- valign="bottom" | |- valign="bottom" | ||
|style="font-weight:bold" height="14" | Critical Care | |style="font-weight:bold" height="14" | Critical Care | ||
|style="font-size:11pt" | | |style="font-size:11pt" | 117,452 | ||
|style="font-size:11pt" | | |style="font-size:11pt" | Mar 9.18 | ||
|- valign="bottom" | |- valign="bottom" | ||
|style="font-weight:bold" height="14" | Medicine | |style="font-weight:bold" height="14" | Medicine | ||
|style="font-size:11pt" | | |style="font-size:11pt" | 158,973 | ||
|style="font-size:11pt" | | |style="font-size:11pt" | Mar 9.18 | ||
|- valign="bottom" | |- valign="bottom" | ||
|style="font-weight:bold" height="14" | TOTAL | |style="font-weight:bold" height="14" | TOTAL | ||
|style="font-size:11pt" | | |style="font-size:11pt" | 277,425 | ||
|style="font-size:11pt" | | |style="font-size:11pt" | Mar 9.18 | ||
|} | |} | ||
Revision as of 18:09, 9 March 2018
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 2018-10-12.
| Database | Total Records | current to date |
| Critical Care | 117,452 | Mar 9.18 |
| Medicine | 158,973 | Mar 9.18 |
| TOTAL | 277,425 | Mar 9.18 |
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 s_Locations.Location, s_Locations.Active, Count(L_Log.D_ID) AS CountOfD_ID, Min(L_Log.R_AdmDate) AS MinOfR_AdmDate, Max(L_Log.R_DisDate) AS MaxOfR_DisDate FROM s_Locations LEFT JOIN L_Log ON s_Locations.Location = L_Log.R_Location GROUP BY s_Locations.Location, s_Locations.Active ORDER BY s_Locations.Location;