I'm trying to do a query search for closing hours of stores.
The issue is that since some venues close at 2,3,4 am - how can I do a query of where LESS THAN or EQUAL when a table row value of 04:00 means more to me than 23:00?
Thanks!
|
I'm trying to do a query search for closing hours of stores. The issue is that since some venues close at 2,3,4 am - how can I do a query of Thanks! |
|||||||||||||||||
|
|
Since the closing time has to happen after the opening time, if How to check if a given time is inside an interval? A given time is inside an interval if:
As far as I remember, I think I've never used XOR in a SQL Query before, but here it fits perfectly:
this gives true if If we have to check if time(now()) is inside an interval of a specific dat, we still have a problem: if a store opens on Monday, and closes at 1AM, closing time is not on Monday anymore, so if we are past midnignt, and the interval is swapped, we have to check the interval of the previous day. This checks the correct opening_day:
if closing_time rolls on the next day, and current time is before closing time, the condition in () will be true so we have to check INTERVAL 1 DAY, otherwise condition is false and subtracting INTERVAL 0 DAY gives the current day. So my final query is this:
that gives all stores open at the given @n datetime. Fiddle is here. EDIT: I had another (maybe weird?) idea to solve the same problem. It should be a little easier to understand. The first day of 2001 is Current date would then become:
(we add the day of the week, weekday of a monday is 0 so we will still be on '2001-01-01', tuesday is 1 so it will be '2001-01-02' and so on). And using TIME_TO_SEC I'm adding the second to make a datetime field. Opening date would be:
to convert opening_day to the number of days to add I'm using FIELD function, then we have to subtract 1 since Monday starts to 1 here, and then we add the time part. And the closing date would be:
same as opening date, but I'm subtracting 1 to DAY only opening_time is before closing_time, otherwise it means that closing_time happens on the next day. Then we only have to use BETWEEN to check if we are inside the interval, like this:
But at this point, we can just convert to seconds since the beginning of the week, we have all elements to do this, and my final query would be this:
|
|||||||||||||
|
|
I think you should use datetime,timestamp or time as datatype. As it will be usefull in future for mathamatical calculations. If you store it as string or number it will be difficult you to do something on it. So be specific while choosing datatype. |
|||
|
|
|
Pick an arbitrary date for storing opening and closing times, say Jan 1st 1900. Any store that opens and closes on the same day uses this date for both times. So a store that opens at 9am and closes at 5pm gets: Open: 1900-01-01 09:00:00 Close: 1900-01-01 17:00:00 A store that opens one day and closes the next uses the following day for its closing time. So a bar that opens at 4pm and closes at 2am the following day gets: Open: 1900-01-01 16:00:00 Close: 1900-01-02 02:00:00 Now you can use greater than and less than queries and get the results you expect. |
|||
|
|
You have to check if To get the valid opening time for a given datetime you also have to check if the given datetime is less than opening time to create the correct time interval. To get the opening times for a given datetime use
To get the actual
UPDATE I have worked on your SQL Fiddle Sample and removed the obsolete column
The solution is based on the same approach as posted above, but checks the opening hours per weekday. |
|||||
|