`ORDER BY` orders the results. Use `ASC` for ascending, `DESC` for descending. A column number can be provided to order by a specific column from the SELECT statement, otherwise the first column will be used. ```SQL -- descending order by column 2 in the SELECT statement ORDER BY 2 DESC ```