
searching between start and end dates
Quote:
>a films starts on the 1st
>July and runs to the 18th I'd like that film to come up on all days ie
>1st 2nd 3rd ...... 17th 18th
Investigate the Between...And Operator in your database engine's help files.
It's typically supported and usually appears as such:
SELECT * FROM tblMovies WHERE mov_start BETWEEN #07/01/1999# AND #07/18/99#;
This should return all movies that start within that time period, and, of
course, you could add extra "WHERE" constraints if needed.
-Curtis Spendlove
-Solstice Software