I have data, looking something like this:
client_id open_date close_date
1 2020-01-01 2020-06-06
with different client and different dates.
and i need to change it to something like this:
date client_id open_date close_date
2020-01-01 1 2020-01-01 2020-06-06
2020-02-01 1 2020-01-01 2020-06-06
2020-03-01 1 2020-01-01 2020-06-06
2020-04-01 1 2020-01-01 2020-06-06
2020-05-01 1 2020-01-01 2020-06-06
2020-06-01 1 2020-01-01 2020-06-06
2020-07-01 1 2020-01-01 2020-06-06
2020-08-01 1 2020-01-01 2020-06-06
2020-09-01 1 2020-01-01 2020-06-06
Where client's data connects to every month in a sequence that i define + 3(or more\less) months from close_date. Ideally in oracle code...