ASC
The ASC command is employed to arrange the returned data in ascending order.
The subsequent SQL statement selects all columns from the “Customers” table, sorted by the “CustomerName” column.
Example
SELECT * FROM Customers ORDER BY CustomerName ASC; |