vote up 3 vote down star
1

I need to get the last day of the month given a date in sql. If I have the first day of the month I can do something like this:

dateadd(day, dateadd(month,'2009-05-01',1), -1)

But does anyone know how to generalize it so I can find the last day of the month for any given date?

flag

7 Answers

vote up 3 vote down check

Here's my version. No string manipulation or casting required, just one call each to the DATEADD, YEAR and MONTH functions:

DECLARE @test DATETIME
SET @test = GETDATE()  -- or any other date

SELECT DATEADD(month, ((YEAR(@test) - 1900) * 12) + MONTH(@test), -1)
link|flag
Very nice! thanks :) – Byron Whitlock Jun 26 at 22:31
vote up 3 vote down

You could get the days in the date by using the DAY() function:

dateadd(day, -1, dateadd(month, 1, dateadd(day, 1 - day(date), date)))
link|flag
Clever approach. It seems so obvious, too! – Eric Jun 26 at 22:34
Msg 8116, Level 16, State 1, Line 1 Argument data type varchar is invalid for argument 2 of dateadd function. – Raj Jun 27 at 0:58
I fixed the syntax for you. DATEADD is (datepart, distance, date). – Eric Jun 27 at 16:58
vote up 2 vote down

Just extend your formula out a little bit:

dateadd(day, -1,
    dateadd(month, 1,
        cast(month('5/15/2009') as varchar(2)) + 
        '/1/' + 
        cast(year('5/15/2009') as varchar(4)))
link|flag
vote up 0 vote down

Hi

Please refer to this link http://www.sql-server-helper.com/functions/get-last-day-of-month.aspx

I guess that might be of some help.

cheers

link|flag
vote up 0 vote down

The LAST_DAY function works nicely for this.

Edit: Actually as mentioned in the comments this probably not for all SQL. I'll leave the post in the possibility of someone looking for a MySQL/Oracle answer stumbling upon it.

From the mysql reference manual:

LAST_DAY(date)

Takes a date or datetime value and returns the corresponding value for the last day of the month. Returns NULL if the argument is invalid.

mysql> SELECT LAST_DAY('2003-02-05');
        -> '2003-02-28'
mysql> SELECT LAST_DAY('2004-02-05');
        -> '2004-02-29'
mysql> SELECT LAST_DAY('2004-01-01 01:01:01');
        -> '2004-01-31'
mysql> SELECT LAST_DAY('2003-03-32');
        -> NULL

LAST_DAY() is available as of MySQL 4.1.1.

link|flag
just oracle though? – John Nolan Jun 26 at 22:14
-1: LAST_DAY is not T-SQL. It's available in Oracle and MySQL, though. – Eric Jun 26 at 22:14
In SQL Server? (tags) – Marc Gravell Jun 26 at 22:14
I think you guys are right. I'm just too used to Oracle & MySQL and didn't think of that. – DB Jun 26 at 22:16
Too bad, That would be a perfect function :( – Byron Whitlock Jun 26 at 22:28
vote up 0 vote down

My 2 cents:

select DATEADD(DAY,-1,DATEADD(MONTH,1,DATEADD(day,(0-(DATEPART(dd,'2008-02-12')-1)),'2008-02-12')))

Raj

link|flag
vote up 0 vote down

If you need it frequently, wrap it in an inline TVF, which is very fast:

http://sqlblog.com/blogs/alexander_kuznetsov/archive/2009/06/21/calculating-third-wednesday-of-the-month-with-inline-udfs.aspx ,

link|flag

Your Answer

Get an OpenID
or

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