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
You ca try this SQL
select * from employee where rec_date between '2017-09-01' and '2017-09-11'