Một phương pháp là CTE đệ quy:
with cte as (
select dateadd(day, 1 - day(@startdate), @startdate) as som,
eomonth(@startdate) as eom
union all
select dateadd(month, 1, som), eomonth(dateadd(month, 1, som))
from cte
where dateadd(month, 1, som) < @enddate
)
select *
from cte;
Nếu bạn muốn tên của tháng, thì bạn có thể sử dụng datename(month, som)
.