整数のリストを作成し、それを使用して日付をインクリメントすることで、これらの問題に取り組むのが最も簡単だと思います。以下に例を示します:
with nums as (
select 0 as n
union all
select n + 1 as n
from nums
where n < 11
)
select rowid, datestart, dateend,
year(dateadd(month, n.n, datestart)) as yr,
month(dateadd(month, n.n, datestart)) as mon
from table t join
nums n
on dateadd(month, n.n - 1, datestart) <= dateend;