Generate the dates in between Start and End Dates
问题 I need to generate all dates in between two given dates. Here is the problem statement: Input: START_DATE END_DATE ---------- ---------- 01-FEB-16 03-FEB-16 01-FEB-16 04-FEB-16 01-FEB-16 05-FEB-16 01-FEB-16 03-FEB-16 11-FEB-16 14-FEB-16 Output (All dates between start date and end dates): BETWEEN_START_AND_END ---------------------- 01-FEB-16 02-FEB-16 03-FEB-16 04-FEB-16 05-FEB-16 11-FEB-16 12-FEB-16 13-FEB-16 14-FEB-16 回答1: Query: with y(start_date, end_date, m) as ( select start_date, end