list the data in sql in ascending order code example
Example 1: sql reverse order of results
SELECT q.*
FROM (SELECT TOP 3 *
FROM table
ORDER BY id DESC) q
ORDER BY q.id ASC
Example 2: ascending order in sql
SELECT *
FROM employees
ORDER BY employees.employee_id DESC ;
· Ascending ( ASC)
· Descending ( DESC)