Click here to Skip to main content
15,885,984 members
Articles / Database Development / SQL Server
Alternative
Tip/Trick

Get days of a month in SQL

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
3 Feb 2010CPOL 4.9K  
@dt is a datetime valuederive the first of this month, add a month to itthen subtract 1 day to get the last day of this monthselect days_of_month=day( dateadd(d,-1, dateadd(m,1, dateadd(d,1-day(@dt), @dt) ) ) )
@dt is a datetime value

derive the first of this month, add a month to it
then subtract 1 day to get the last day of this month

select days_of_month=day(
        dateadd(d,-1,
            dateadd(m,1,
                dateadd(d,1-day(@dt), @dt)
                )
            )
        )

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --