vote up 3 vote down star
2

Specifically MSSQL 2005.

flag

50% accept rate
I'm not sure the answer you marked as accepted acutally works. Run '2009 Jan 30' through it and see what it gives? – Dems Sep 20 at 9:48
Hello? The accepted answer -doesn't- work... – Dems Sep 21 at 19:22
Dems, I used this as inspiration for solution that I implemented, however that's almost a year ago so I can't remember precisely what I did... – David Collie Sep 29 at 13:53
Wow, just noticed the "2008". I have NO idea how I found this question unless SO got a bit screwy in the order it listed 'new' questions? – Dems Sep 30 at 19:44

8 Answers

vote up 5 vote down check

Add one month to the current date, and then subtract the value returned by the DAY function applied to the current date using the functions DAY and DATEADD.

dateadd(day, -day(getdate()), dateadd(month, 1, getdate()))
link|flag
What if the two getdate calls give answers in different dates? – David B Oct 8 '08 at 14:02
I suppose that's possible. You'd have to declare a variable to hold today's date beforehand. – Bill the Lizard Oct 8 '08 at 14:14
They won't. We create reports that generate year, quarter, month and rundate (GetDate()) columns that take 30 seconds and the value never changes. – GuinnessFan Jul 21 at 9:59
Try: Select GetDate() Select GetDate() and compare to: Select GetDate() GO Select GetDate() The first gives the same time, the second does not. – GuinnessFan Jul 21 at 10:02
They can't come back differently. Scalar functions are executed once and then their result substituted in. That's why if you do [SELECT RAND(), * FROM myTable] ever row has the same value for rand. Even if the query took a day to execute, the value at the Start of the exceution is what is used. – Dems Sep 20 at 9:36
show 1 more comment
vote up 0 vote down
DATEADD(dd, -1, DATEADD(mm, +1, DATEADD(dd, 1 - DATEPART(dd, @myDate), @myDate)))
link|flag
vote up 0 vote down

For completeness, in Oracle you'd do something like ...

select add_months(trunc(sysdate,'MM'),1) ...

or

select last_day(sysdate)+1 ...
link|flag
vote up 2 vote down
SELECT DATEADD(M, DATEDIFF(M, '1990-01-01T00:00:00.000', CURRENT_TIMESTAMP), '1990-01-31T00:00:00.000')

Explanation:

General approach: use temporal functionality.

SELECT '1990-01-01T00:00:00.000', '1990-01-31T00:00:00.000'

These are DATETIME literals, being the first time granule on the first day and last day respectively of the same 31-day month. Which month is chosen is entirely arbitrary.

SELECT DATEDIFF(M, '1990-01-01T00:00:00.000', CURRENT_TIMESTAMP)

This is the difference in whole months between the first day of the reference month and the current timestamp. Let's call this @calc.

SELECT DATEADD(M, @calc, '1990-01-31T00:00:00.000')

This adds @calc month granules to the last day of the reference month, the result of which is the current timestamp 'rounded' to the last day of its month. Q.E. D.

link|flag
+1 for included an explanation :) – Dems Sep 21 at 11:35
vote up 0 vote down
SELECT DATEADD(day, -1, DATEADD(month, DATEDIFF(month, 0, GETDATE()) + 1, 0) )
link|flag
Almost an exact copy of Sebartian's answer, but 40 minutes later. Why did you add this and cause a clutter? – Dems Sep 20 at 9:44
vote up 0 vote down
DECLARE
  @Now datetime,
  @Today datetime,
  @ThisMonth datetime,
  @NextMonth datetime,
  @LastDayThisMonth datetime

SET @Now = getdate()
SET @Today = DateAdd(dd, DateDiff(dd, 0, @Now), 0)
SET @ThisMonth = DateAdd(mm, DateDiff(mm, 0, @Now), 0)
SET @NextMonth = DateAdd(mm, 1, @ThisMonth)
SET @LastDayThisMonth = DateAdd(dd, -1, @NextMonth)

Sometimes you really do need the last day of this month, but frequently what you really want is to describe the time interval of this month. This is the best way to describe the time interval of this month:

WHERE @ThisMonth <= someDate and someDate < @NextMonth
link|flag
vote up 2 vote down

DATEADD(DAY, -1, DATEADD(MONTH, DATEDIFF(MONTH, 0,CURRENT_TIMESTAMP) + 1, 0)

link|flag
1  
I've often found that people don't follow the logic of this. So, although it seems to be correct (where the answer accepted appears to Not be correct) , I'm not going to give +1. Any chance you can edit the answer to give the explanation? – Dems Sep 20 at 9:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.