D
Dorian
Is there any way to code a parameterized query to act when nothing is entered?
e.g.
SELECT * FROM myTable WHERE myStatus = [Status] AND myDate BETWEEN [From]
AND [To];
I'd like the user to be able to just hit return to select rows for any
status and also to be able to omit dates to choose all dates.
e.g.
SELECT * FROM myTable WHERE myStatus = [Status] AND myDate BETWEEN [From]
AND [To];
I'd like the user to be able to just hit return to select rows for any
status and also to be able to omit dates to choose all dates.