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?
|
1
|
|
|
|
|
|
|
||||
|
|
|
Today's day-of-week: You want to add enough days to get the next Sunday. If today is 1 = Sunday, add 7 so you are always adding 8 - today's day-of-week value. SELECT DATEADD(d, GETDATE(), 8 - @dow(GETDATE)) EDIT: But Cade wins! |
|||
|
|
|
|
Thanks for the SET DATEFIRST hint, thats just helped me out with a query I had. |
||
|
|
