I have a single table that has date and time info in one field, such as '6/2/2003 12:51:04'. What I am being asked to do is to report all activity on ALL dates but only that which happened between 12:00 and 8:00. The time is 24-hour formatted, so there won't be any confusion between midnight and noon. I'm basically looking for a "Select * from EvnLog where DATE > x/x/xx 12:00 and DATE < x/x/xx 8:00", but of course, that doesn't work.
TIA.
TIA.