Determine 'this week' in T-SQL - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T07:25:42Zhttp://stackoverflow.com/feeds/question/449475http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/449475/determine-this-week-in-t-sql2Determine 'this week' in T-SQLkeithwarren7http://stackoverflow.com/users/407142009-01-16T04:00:01Z2009-09-30T11:24:51Z
<p>This is locale specific to the US wherein it considered that the start of a week is Sunday; I want to be able to ask SQL to give me the date of the next Sunday relative to today [getDate()]. If today is Jan 15 it should return Jan 18; if today were Sunday it should return the following Sunday which is the 25th. This would be trivial to write a UDF for but I was curious if anyone had other tricks/ideas?</p>
http://stackoverflow.com/questions/449475/determine-this-week-in-t-sql/449491#4494914Answer by Cade Roux for Determine 'this week' in T-SQLCade Rouxhttp://stackoverflow.com/users/182552009-01-16T04:10:33Z2009-01-16T12:16:12Z<pre><code>DECLARE @d AS datetime
SET @d = '1/15/2009'
PRINT @d
PRINT DATEADD(day, 8 - DATEPART(weekday, @d), @d)
SET @d = '1/18/2009'
PRINT @d
PRINT DATEADD(day, 8 - DATEPART(weekday, @d), @d)
-- So it should be able to be used inline pretty efficiently:
DATEADD(day, 8 - DATEPART(weekday, datecolumn), datecolumn)
-- If you want to change the first day for a different convention, simply use SET DATEFIRST before performing the operation
-- e.g. for Monday: SET DATEFIRST 1
-- e.g. for Saturday: SET DATEFIRST 6
DECLARE @restore AS int
SET @restore = @@DATEFIRST
SET DATEFIRST 1
DECLARE @d AS datetime
SET @d = '1/15/2009'
PRINT @d
PRINT DATEADD(day, 8 - DATEPART(weekday, @d), @d)
SET @d = '1/19/2009'
PRINT @d
PRINT DATEADD(day, 8 - DATEPART(weekday, @d), @d)
SET DATEFIRST @restore
</code></pre>
http://stackoverflow.com/questions/449475/determine-this-week-in-t-sql/449516#4495161Answer by le dorfier for Determine 'this week' in T-SQLle dorfierhttp://stackoverflow.com/users/316412009-01-16T04:29:49Z2009-01-17T04:42:01Z<p>Today's day-of-week:<br />
SELECT @dow = DATEPART(d, GETDATE()) where 1 = Sunday, 7 = Saturday</p>
<p>You want to add enough days to get the next Sunday. </p>
<p>If today is 1 = Sunday, add 7<br />
If today is 2 = Monday, add 6<br />
If today is 3 = Tuesday, add 5
etc.</p>
<p>so you are always adding 8 - today's day-of-week value.</p>
<p>SELECT DATEADD(d, GETDATE(), 8 - @dow(GETDATE))</p>
<p>EDIT: But Cade wins!</p>
http://stackoverflow.com/questions/449475/determine-this-week-in-t-sql/1497542#14975420Answer by Jamie M for Determine 'this week' in T-SQLJamie Mhttp://stackoverflow.com/users/1817632009-09-30T11:24:51Z2009-09-30T11:24:51Z<p>Thanks for the SET DATEFIRST hint, thats just helped me out with a query I had.</p>