I need to determine the number of days in a month for a given date in SQL Server.
Is there a built-in function? If not, what should I use as the user-defined function?
|
I need to determine the number of days in a month for a given date in SQL Server. Is there a built-in function? If not, what should I use as the user-defined function? |
||||
|
|
|
You can use the following with the first day of the specified month:
To make it work for every date:
|
|||||||||||||||
|
|
I always find it funny when people asks questions that you get the answer two in the top result on google...
Personally though, I would make a UDF for it if there is not a built in function... |
|||
|
|
In SQL Server 2012 you can use EOMONTH (Transact-SQL) to get the last day of the month and then you can use DAY (Transact-SQL) to get the number of days in the month.
|
|||
|
|
|
Solution 1: Find the number of days in whatever month we're currently in
Solution 2: Find the number of days in a given month-year combo
|
|||
|
|
|
You do need to add a function, but it's a simple one. I use this:
|
||||
|
|
||||
|
|
|
I upvoted Mehrdad, but this works as well. :)
To Test
|
|||
|
|
|
here's another one...
|
|||
|
|
|
I know this question is old but I thought I would share what I'm using.
and
Those could be combine to create a single function to retrieve the number of days in a month if needed. |
|||
|
|
Nice 'n' Simple and does not require creating any functions |
||||
|
Nice Simple and does not require creating any functions Work Fine |
|||
|
|