Need to create 2 queries:
Query 1 seems to be working ok:
Select * from temp
where WeekDay not in ("Sat", "Sun") and TimeOfDay between "08:00" and "14:00");
How do I now create another query to select * for the rest of the times? (Weekdays from 14:01 to 07:59 and Saturday/Sunday the entire 24-hour period)
Thank you
Query 1 seems to be working ok:
Select * from temp
where WeekDay not in ("Sat", "Sun") and TimeOfDay between "08:00" and "14:00");
How do I now create another query to select * for the rest of the times? (Weekdays from 14:01 to 07:59 and Saturday/Sunday the entire 24-hour period)
Thank you