The SQL ASC keyword specifies an ascending sort order for a column within in the ORDER BY clause. This means the values are sorted in 0 to 9 or A to Z order.
Example:
SELECT * from FROM Person ORDER BY Name ASC
2020-04-19