Im trying to do a easy query,
SELECT BugTracking.[Reported Date]
FROM BugTracking
WHERE (((BugTracking.[Reported Date]) Like #12/15/2003#));
which returns 0 records, however the Reported Date field in the database is a type date/time so if i do this query:
SELECT BugTracking.[Reported Date]
FROM BugTracking
WHERE (((BugTracking.[Reported Date]) Like #12/15/2003 2:55:25 PM#));
it returns a record. How do I change my first query so that i can only pass it a date and it will find all dates the match it? Thanks!!
SELECT BugTracking.[Reported Date]
FROM BugTracking
WHERE (((BugTracking.[Reported Date]) Like #12/15/2003#));
which returns 0 records, however the Reported Date field in the database is a type date/time so if i do this query:
SELECT BugTracking.[Reported Date]
FROM BugTracking
WHERE (((BugTracking.[Reported Date]) Like #12/15/2003 2:55:25 PM#));
it returns a record. How do I change my first query so that i can only pass it a date and it will find all dates the match it? Thanks!!