I have a start_date and end_date. I want to get the list of dates in between these two dates. Can anyone help me pointing the mistake in my query.<
start_date
end_date
SELECT Date, TotalAllowance FROM Calculation WHERE EmployeeId = 1 AND Date BETWEEN to_date('2011/02/25','yyyy-mm-dd') AND to_date ('2011/02/27','yyyy-mm-dd');