Total admissions ICU/Med: Difference between revisions
TOstryzniuk (talk | contribs) m Total patient in database as of Jan 12.17 (exclude 1 yr family Medicine) |
Ttenbergen (talk | contribs) m Text replacement - "[[Category: " to "[[Category:" |
||
| (22 intermediate revisions by 3 users not shown) | |||
| Line 1: | Line 1: | ||
Total number of encounters in the ICU and Medicine in Database: [[CCMDB]]. | Total number of encounters in the ICU and Medicine in Database: [[CCMDB]]. | ||
{{Article needing periodic review | |||
| NextReviewDate = 2026-01-01 | |||
}} | |||
{| class="wikitable" | As of 2024-12-31: | ||
|- | {| class="wikitable" | ||
|- | |||
| | || | ||
| | || Number of profiles | ||
|- valign="bottom" | |- valign="bottom" | ||
| | || [[Definition of a Critical Care Program Admission|Critical Care]] | ||
| | || {{formatnum: {{N CC}} }} | ||
|- valign="bottom" | |- valign="bottom" | ||
| | || [[Definition of a Medicine Program Admission|Medicine]] | ||
| | || {{formatnum: {{N Med}} }} | ||
|- valign="bottom" | |- valign="bottom" | ||
| | || Total | ||
| | || {{N Tot}} | ||
|} | |} | ||
==Data Collection Start Dates for each Hospital in Region Go to: [[Site and Location table]]== | ==Data Collection Start Dates for each Hospital in Region Go to: [[Site and Location table]]== | ||
== SQL == | == SQL == | ||
To generate a per-unit count in Access paste the following: | To generate a per-unit count in Access paste the following: | ||
SELECT | <pre> | ||
FROM | SELECT Count(L_Log.D_ID) AS CountOfD_ID, s_dispo.program | ||
GROUP BY | FROM L_Log INNER JOIN s_dispo ON L_Log.Service_Location = s_dispo.dispo_ID | ||
GROUP BY s_dispo.program; | |||
</pre> | |||
== Related articles == | |||
{{Related Articles}} | |||
[[Category: Reporting]] | [[Category:Reporting]] | ||
[[Category: Statistical Analysis]] | [[Category:Statistical Analysis]] | ||
[[Category:About]] | |||