Difference between revisions of "Length of stay"

From ECHSA Congenital Database
Jump to navigationJump to search
(Example added)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 
{{terminology-infobox}}
 
{{terminology-infobox}}
  
'''Length Of Stay''' - time (in days) of stay in a hospital after a surgery.
+
'''Length Of Stay''' - time (in days) of stay in a hospital after surgery.
 +
 
 +
It is calculated as a difference between the date of discharge and the date of surgery:
 +
 
 +
SELECT o.date_of_discharge - o.date_of_surgery AS "Length of stay" ...
  
 
[[category:terminology]]
 
[[category:terminology]]

Latest revision as of 10:25, 7 May 2006

Terminology
Report parameters
Data

Length Of Stay - time (in days) of stay in a hospital after surgery.

It is calculated as a difference between the date of discharge and the date of surgery:

SELECT o.date_of_discharge - o.date_of_surgery AS "Length of stay" ...