Answers for "how to display records in ascending order in sql"

SQL
1

ascending order in sql

SELECT *
FROM employees
ORDER BY employees.employee_id DESC ;
·        Ascending ( ASC)
·        Descending ( DESC)
Posted by: Guest on January-07-2021
0

how to ascending order in sql

SELECT *
FROM employees
ORDER BY employees.employee_id DESC ;
Posted by: Guest on June-10-2021

Code answers related to "how to display records in ascending order in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language