In a Mental Status Examination a psychiatrist will assess the patient, often to decide whether they should be admitted to hospital. Quoting the article linked above, “Orientation is assessed by asking the patient … what time it is (time, day, date)”. So the patient is asked what day of the week it is.
What if the psychiatrist were to ask instead, “What is the number of today, based upon where it falls among the days of the week”? That might indicate that the doctor himself was under too much pressure and needed to take some time off, and it would also be quite unfair to the patient. We need to know what day it is, we often need to know when the week starts or finishes, but we don’t usually ask ourselves what number the day is.
There are database functions that provide the day number: in Sql Server it’s: SELECT DATEPART(weekday, SYSDATETIME())
, and in Oracle it would be TO_CHAR('d', SYSDATE)
, which you can cast to a number of course. Do we ever need to know it? Continue reading Just Say No… to Day Number Functions →
Like this:
Like Loading...