ORDER BY Clause Example

The SQL statement shown in the following example uses the ORDER BY clause to sort records by last name in descending order (Z-A).

SELECT LastName, FirstName FROM Employees 
ORDER BY LastName DESC;