Number of days left in a given month How do I find the number of days left in the current month? Example if current month is November and todays date is 16/11/2016 The Numb
Simply use the Datepart function:
declare @date date set @date='16 Nov 2016' select datediff(day, @date, dateadd(month, 1, @date)) - Datepart(DAY,@date)