Can anyone explain why the following query returns an empty dataset, even though there are definitely records which match...
SELECT * FROM TRANSACTIONS.DB WHERE "Submit Date" BETWEEN "01/01/2003" AND "31/12/2003"
and:
SELECT * FROM TRANSACTIONS.DB WHERE "Submit Date">="01/01/2003" AND "Submit Date"<="31/12/2003"
and the same as above but with US date format and mmddyy format.
The BDE settings are 4 digit year and leading zero's on month & day.
Thanks if you can help.
SELECT * FROM TRANSACTIONS.DB WHERE "Submit Date" BETWEEN "01/01/2003" AND "31/12/2003"
and:
SELECT * FROM TRANSACTIONS.DB WHERE "Submit Date">="01/01/2003" AND "Submit Date"<="31/12/2003"
and the same as above but with US date format and mmddyy format.
The BDE settings are 4 digit year and leading zero's on month & day.
Thanks if you can help.