I've got the following datastructure:
ID,Name,Start,End
1,Aaron,01-01-2020,31-12-2020
2,Example,01-01-2020,31-6-2020
Start and End represents a date.
The outcome of my select should look like the following, supposing, I start with the data above:
ID,Name,Month
1,Aaron,January
1,Aaron,February
1,Aaron,March
1,Aaron,April...
1,Aaron,December
2,Example,January...
2,Example,June.
So what I actually want is to get all months inside each time range. Is this possible with one select? Or can I try a different approach?