在 SQL Server 中,如何编写查询以获取开始日期和结束日期之间的月份、月份的天数(月份)、月份中的实际天数
startdate 和 enddate 作为输入参数传递,我需要知道月数、实际天数和当月天数
例如:
Start date : 2012-04-02
End date : 2012-08-23
我需要得到结果,
Month Days ActualDays _ inMonth
----------------------------------------------
04 29 30 - (The no of days on Apr'12 )
05 31 31
06 31 31
07 31 31
08 31 31
04 -month
29 -(Frm startdate 2-Apr'12 to until 30-Apr'12(Apr End))
30 - (The no days on Apr'12 )