Instruction
Good! And the last thing, you can also sort by time.
SELECT code, departure FROM route ORDER BY arrival DESC;
Just like with dates again.
Exercise
Show the code and arrival time of all the routes with arrival before 4:00 PM and order them by arrival with the earliest time coming first.
Stuck? Here's a hint!
Remember the proper time format and use apostrophes: 'HH:MM:SS'. 4 PM is '16:00:00' in SQL.



