In SQL Server 2008 the isoweek can be found with this:
SELECT datepart(iso_week, getdate())
Before SQL Server 2008 there were no built-in function to find isoweek.
I have been searching high and low for a good syntax to find a userdefined iso_week for SQL Server 2005. I found quite a few solutions. Didn't like any of the solutions I found, most of them didn't work, and they were way too long.
Since the issue is very old, I would expect this issue is depleted and the best solution has been found. I was unable to find a good method though.
I wrote a solution, which I am going to post later. But before I do, I want to make absolutely sure that no one else can match the solution I wrote.
I am hoping to earn the self-learner badge. I urge people to find the best answers out there for this ancient question.
I am going to post my answer after giving people a chance of finding a good solution.
I needed something similar for PowerQuery & PowerBI and based on t-clausen.dk's response I was able to make this equation. It works the same as his but uses PowerQuery syntax. Also the base date for the
DATEDIFF
of 0 was 1/1/1900 in SQL but in PowerQuery it is 12/30/1899 so I use 2 instead of the 0.I also needed the ISO Year so I made an adjustment to the ISO Week calculation and came up with:
Change the
[Date]
to reference the date column in the data.There is a link here for other earlier attempts http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=60510
This is the OLD code for the function
After combining @AndriyM 's brilliant answer with my own, we are down to 1 line. This is the NEW code.
Explanation for the old code (not going to explain the new code. It is fragments from my code and AndriyM's code):
Finding weekday 4 of the chosen date
Finding isoyear - year of weekday 4 of a week is always the same year as the isoyear of that week
When adding 3 days to the first day of the isoyear a random day of the first isoweek of the isoyear is found
finding relative week of the first isoweek of the isoyear
Finding the monday minus 4 days of the first isoweek results in thursday of the week BEFORE the first day of the first isoweek of the isoyear
Knowing first thursday of the week before the first isoweek and first thursday of the chosen week, makes it is quite easy to calculate the week, it doesn't matter which setting datefirst has since the weekdays of both dates are thursdays.
Wow! Very good topic and solution to avoid using "set datefirst 1". I just want to add something. If like me, you also want to return the year with the ISO week, like "2015-01" as being "Year 2015, Week 01", it might be useful for reporting purpose. Since the year from ISO week can be different from the actual year of the date! Here is how I did in combination to your code.
Will return "2015-01".
Here's an approach that is similar to yours in that it also relies on this week's Thursday. But in the end it uses the date differently.
Get the date of this (ISO) week's Thursday.
Your own solution uses the hard coded date of a known Thursday. Alternatively, this week's Thursday could be found with the help of
@@DATEFIRST
:(I wasn't struggling too much for the right formula because it was already known to me.)
Get the Thursday's day of year:
Use the number to find out the week like this:
Here are the above calculations in a single statement: