I want to return all records from a table after a certain date and a specified time.
The table has two fields (PID->long and [Date/Time]->date/time.
I've tried:
Can someone help me this query?
Thanks,
Rewdee
The table has two fields (PID->long and [Date/Time]->date/time.
I've tried:
Code:
SELECT Visits.PID, Visits.[Date/Time]
FROM Visits
WHERE Visits.[Date/Time]>Date()-7 And format(Visits.[Date/Time],"Short Time")>#4:00 PM#
Can someone help me this query?
Thanks,
Rewdee