With an ORDER BY clause, we can sort a result set by any column.

Let's insert some more records into the family table, select them and sort the whole thing by id in descending order.

Wahey! We can use the DESC keyword to specify a descending order. If we wanted an ascending order, we would have used the 'ASC' keyword.

Psst: if we would order by age alone, without specifying the order, the result set would be sorted in ascending order.

Oops-a-daisy! Didn't we want to order the id in a descending order?