~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/functions/extract_date.rst

command for adding EPEL repository

Show diffs side-by-side

added added

removed removed

Lines of Context:
112
112
 
113
113
**week**
114
114
 
115
 
Returns the week number that a day is in. The ISO-8601 week starts on Monday. Accordingly, the first week of a year contains January 4 of that year.
116
 
 
117
 
It's possible for early January dates to be part of the 52nd or 53rd week of the previous year. For example, 2006-01-01 was part of the 52nd week of year 2005. ::
 
115
Returns the week number that a day is in. Weeks are numbered according to ISO 8601:1988.
 
116
 
 
117
ISO 8601:1988 means that if the week containing January 1 has four or more days in the new year, then it is week 1; otherwise it is the last week of the previous year, and the next week is week 1. The ISO-8601 week starts on Monday.
 
118
 
 
119
It's possible for early January dates to be part of the 52nd or 53rd week of the previous year. For example, 2011-01-01 was part of the 52nd week of year 2010. ::
118
120
 
119
121
        SELECT EXTRACT(WEEK FROM TIMESTAMP '2010-01-25 12:44:06');
120
122