Hi,
I'm connecting to a table that has the following fields:
DayName (Monday, Tuesday, etc.)
Start (11am, 3pm, etc)
Stop (12pm, 4pm, etc)
Protocol (Instructions specific to that day/time)
Here's my SQL statement:
SELECT * FROM Protocols WHERE Start<=Time() AND Stop>=Time()
That works fine...