Login or Sign Up to become a member!

EXPERTS, INFORMATION, IDEAS & KNOWLEDGE

Social bookmarker Add this

Your profile

Search

July 2009
Mon Tue Wed Thu Fri Sat Sun
 << <   > >>
    1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31    

XML Feeds

Authors

« SQL Server 2008 Cumulative Update 1 is available from MicrosoftInterview With Louis Davidson Author of Pro SQL Server 2008 Relational Database Design and Implementation »
The Data Management Journal

ISO Week In SQL Server

by SQLDenis


Permalink 22 Sep 2008 10:03 , Categories: Data Modelling & Design Tags: dates, functions, how to, iso, iso week, sql server 2008, tip

ISO Week in SQL Server

First let's take a look at what ISO week is, from WikiPedia:
Week date representations are in the format as shown below.
YYYY-Www or YYYYWww
YYYY-Www-D or YYYYWwwD

[YYYY] indicates the so-called ISO year which is slightly different than the calendar year (see below). [Www] is the week number prefixed by the letter 'W', from W01 through W53. [D] is the weekday number, from 1 through 7, beginning with Monday and ending with Sunday. This form is popular in the manufacturing industries.
There are mutually equivalent definitions for week 01:

  • the week with the year's first Thursday in it,
  • the week with 4 January in it,
  • the first week with the majority (four or more) of its days in the starting year, and
  • the week starting with the Monday in the period 29 December – 4 January.

If 1 January is on a Monday, Tuesday, Wednesday or Thursday, it is in week 01. If 1 January is on a Friday, Saturday or Sunday, it is in week 52 or 53 of the previous year.
The week number can be described by counting the Thursdays: week 12 contains the 12th Thursday of the year.
The ISO year starts at the first day (Monday) of week 01 and ends at the Sunday before the new ISO year (hence without overlap or gap). It consists of 52 or 53 full weeks. The ISO year number deviates from the number of the calendar year (Gregorian year) on a Friday, Saturday, and Sunday, or a Saturday and Sunday, or just a Sunday, at the start of the calendar year (which are at the end of the previous ISO year) and a Monday, Tuesday and Wednesday, or a Monday and Tuesday, or just a Monday, at the end of the calendar year (which are in week 01 of the next ISO year). For Thursdays, the ISO year number is always equal to the calendar year number.
Examples:

  • 2008-12-29 is written "2009-W01-1"
  • 2010-01-03 is written "2009-W53-7"

You can read more about ISO week here: http://en.wikipedia.org/wiki/ISO_week_date

Sometimes you need to show the ISO week in SQL server but there was no built in way to calculate it until SQL server 2008 was released. In SQL Server 2000/2005 you could use the user defined function ISOweek which was in the SQL Server books on line.
Here is what the function looks like

  1. CREATE FUNCTION ISOweek  (@DATE DATETIME)
  2. RETURNS INT
  3. AS
  4. BEGIN
  5.    DECLARE @ISOweek INT
  6.    SET @ISOweek= DATEPART(wk,@DATE)+1
  7.       -DATEPART(wk,CAST(DATEPART(yy,@DATE) AS CHAR(4))+'0104')
  8. --Special cases: Jan 1-3 may belong to the previous year
  9.    IF (@ISOweek=0)
  10.       SET @ISOweek=dbo.ISOweek(CAST(DATEPART(yy,@DATE)-1
  11.          AS CHAR(4))+'12'+ CAST(24+DATEPART(DAY,@DATE) AS CHAR(2)))+1
  12. --Special case: Dec 29-31 may belong to the next year
  13.    IF ((DATEPART(mm,@DATE)=12) AND
  14.       ((DATEPART(dd,@DATE)-DATEPART(dw,@DATE))>= 28))
  15.       SET @ISOweek=1
  16.    RETURN(@ISOweek)
  17. END
  18. GO

Now run the following query on SQL server 2000 and up

  1. SELECT dbo.ISOweek('20071231'),DATEPART(wk,'20071231')


If you are running SQL server 2008 then you can use DATEPART and the datepart argument isowk. Run the select statement below to see the result

  1. SELECT DATEPART(isowk,'20071231'),DATEPART(wk,'20071231')

As you can see here also SQL Server's wk part returns 53 while isowk returns 1

I have also added parts of this to the wiki here: ISO Week In SQL Server

4 comments »Send a trackback » 3794 views

Trackback address for this post

Trackback URL (right click and copy shortcut/link location)

4 comments

Comment from: Everybody [Visitor]
I've found everywhere this code. But it isn't working ! Try with 2008.08.31. The isoweek must be 35 instead of 36 !
10/09/08 @ 06:51
Comment from: SQLDenis [Member] Email
Yep, you are right

However SELECT DATEPART(isowk,'20080831') does return the correct date

Funny (or sad) how that is wrong in Books On Line
10/09/08 @ 07:07
Comment from: Everybody [Visitor]
Yes, but I have SQL 2005 Server. I can not use the isowk parameter.... That is why I am searching a right function...
10/09/08 @ 07:16
Comment from: Kenta [Visitor]
The function relies on the first day of week being monday.

Try this:
SET DATEFIRST 1 -- Set the first day of the week to Monday
SELECT dbo.ISOweek('20080831')
10/13/08 @ 01:08

Leave a comment


Your email address will not be revealed on this site.

Your URL will be displayed.
PoorExcellent
(Line breaks become <br />)
(Name, email & website)
(Allow users to contact you through a message form (your email will not be revealed.)