I'm looking for a way to select the row in which the current time is between two set values in the row. I've set up a table with 3 columns, 2 of them hold a timestamp (HH:MM:SS), the other one a string. Is there a way I can get the string corresponding to the current time? To put it in a more abstract way:
SELECT String FROM TableName WHERE (Current Time) BETWEEN (Lower Limit Time Value) AND (Upper Limit Time Value);

So basically, based on the current time, my script should output the correct string.
How do I go about this? Thanks!
lower_limitandupper_limit? – Quassnoi Jan 21 '11 at 11:17BETWEEN '22:00:00' AND '05:00:00'would probably not return what you await. – eumiro Jan 21 '11 at 11:17