statmanron
Programmer
I created a lookup table in Microsoft Access that lists long times between 9:31:00 AM to 4:00:00 PM. Through the query tool, I can successfully find the record times between 9:31:00 AM and 9:33:00 AM... but nothing greater than those three values.
The query works for 9:33:00 AM and below but doesn't work anything greater than 9:34:00 PM
SELECT [Session Time Frames].SessionTime, [Session Time Frames].Min1SessionTime
FROM [Session Time Frames]
WHERE ((([Session Time Frames].Min1SessionTime)=#9:33:00 AM#));
SELECT [Session Time Frames].SessionTime, [Session Time Frames].Min1SessionTime
FROM [Session Time Frames]
WHERE ((([Session Time Frames].Min1SessionTime)=#9:34:00 AM#));
Is there a known bug in Microsoft Access????
The query works for 9:33:00 AM and below but doesn't work anything greater than 9:34:00 PM
SELECT [Session Time Frames].SessionTime, [Session Time Frames].Min1SessionTime
FROM [Session Time Frames]
WHERE ((([Session Time Frames].Min1SessionTime)=#9:33:00 AM#));
SELECT [Session Time Frames].SessionTime, [Session Time Frames].Min1SessionTime
FROM [Session Time Frames]
WHERE ((([Session Time Frames].Min1SessionTime)=#9:34:00 AM#));
Is there a known bug in Microsoft Access????