I have a requirement in which i have to split the given dates into each quarter.
it should start from the start date to the last day of quarterly month and end at end date provided.
Ex.:
START_DATE : 25/09/2013, END_DATE : 25/09/2014
Expected O/P:
START_DATE END_DATE
25/09/2013 30/09/2013
01/10/2013 31/12/2013
01/01/2014 31/03/2014
01/04/2014 30/06/2014
01/07/2014 25/09/2014
Thanks in advance.