Using the Employees Table, below is an example to return the Id, FName and LName columns in (ascending) LName order:
SELECT Id, FName, LName FROM Employees
ORDER BY LName
Returns:
IdFNameLName2JohnJohnson1JamesSmith4JohnathonSmith3MichaelWilliams
To sort in descending order add the DESC keywo...