I've a table with all the dates for this year. I've built a query where the results return all the dates upto the current date...what i need help with is that I want the query to return only 21 results or any other method that returns 21 dates prior to today. The current SQL statement i have is:
SELECT tbldate.zdate, tbldate.zday
FROM tbldate
WHERE (((tbldate.zdate)<Date()));
thank you in advance to anyone who responds
Jeevenze
SELECT tbldate.zdate, tbldate.zday
FROM tbldate
WHERE (((tbldate.zdate)<Date()));
thank you in advance to anyone who responds
Jeevenze