Last day of previous month

>>Script Language and Platform: SQL Server 2000
Change the date to first day of current month then subtract 1 from the date.

–Todays date = April 20, 2004
select dbo.LastDayofPreviousMonth(getdate())
–returns 2004-03-31 00:00:00.000

select dbo.LastDayofPreviousMonth(’01/12/2004′)
–returns 2003-12-31 00:00:00.000

select dbo.LastDayofPreviousMonth(’03/04/2004′)
–returns 2004-02-29 00:00:00.000

Author: MAK


create function dbo.LastDayofPreviousMonth (@date datetime)
returns datetime
as
–Author:MAK
–Objective: returns last day of previous month for a given date.
begin
declare @returndate datetime
set @returndate =convert(datetime,right(’00’+convert(varchar(2),
month(@date)),2)+’/01/’+convert(varchar(4),year(@date)))-1
return @returndate

end



Disclaimer:
We hope that the information on these script pages is
valuable to you. Your use of the information contained in these pages,
however, is at your sole risk. All information on these pages is provided
“as -is”, without any warranty, whether express or implied, of its accuracy,
completeness, or fitness for a particular purpose…

Disclaimer Continued

Back to Database Journal Home

Get the Free Newsletter!

Subscribe to Cloud Insider for top news, trends & analysis

Latest Articles