I want an SQL that displays all the days within the range given.
SELECT <days> from <dual> where days between '01/01/2006' and '12/12/2006'
Dual table is precent in Oracle but what is its equivalent in ACCESS?
If i run the above query with a different date range i should get all the days between those two date ranges.
SELECT <days> from <dual> where days between '01/01/2006' and '12/12/2006'
Dual table is precent in Oracle but what is its equivalent in ACCESS?
If i run the above query with a different date range i should get all the days between those two date ranges.
Comment