When I execute the query:
SELECT StartTime, EndTime, MeetingID
FROM Meetings
WHERE Date=#2/12/2005#
ORDER BY StartTime;
It does not return any records even though there is a record with a matching date. If I change the query to match a date that is either today or in the past it works fine. Any ideas?
Thanks very much
Ed
SELECT StartTime, EndTime, MeetingID
FROM Meetings
WHERE Date=#2/12/2005#
ORDER BY StartTime;
It does not return any records even though there is a record with a matching date. If I change the query to match a date that is either today or in the past it works fine. Any ideas?
Thanks very much
Ed