G
Guest
I capture a field 'SDate' in records. I have a search form where I want to show records between 'date1' and 'date'. I can't seem to get the query to work though. I've tried:
SELECT * FROM Table WHERE (SDate >= :
ate1:
AND (SDate <= :
ate2:
And
SELECT * FROM Table WHERE SDate BETWEEN :
ate1:: AND :
ate2::
Neither seem to work for me. What am I missing?
SELECT * FROM Table WHERE (SDate >= :
ate1:
AND (SDate <= :
ate2:
And
SELECT * FROM Table WHERE SDate BETWEEN :
ate1:: AND :
ate2::Neither seem to work for me. What am I missing?