Instruction
You can also use BETWEEN with time data:
SELECT code, departure_time FROM route WHERE arrival_time BETWEEN '12:00:00' AND '15:00:00';
Remember that BETWEEN is inclusive in the above query, routes that depart at 12:00 AM or 3:00 PM will be included in the results.
Exercise
Show the codes for all routes departing between 11:00 AM and 5:00 PM.



