That query selects records from a table where the date field falls between 2001/06/12 and 2001/06/15.
What I am trying to do is to select records from a table where a given/specific date is within the range of 2 different date field values.
something like:
Select * from table where 'value' BETWEEN datefield1 and datefield2
(This doesn't work though)
Do you know another way around this?
Please help!