Best way to store working hours and query it efficiently
To store normal operation hours, you would need to store a number of records containing: Shop – INTEGER DayOfWeek – INTEGER (0-6) OpenTime – TIME CloseTime – TIME I assume for example that each shop has reduced hours during national holidays, or has plant shutdowns, so you would also need to store some override records: … Read more