Answers for "sql decreasing order"

SQL
1

descending order sql

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

sql order by

Used to sort the result data in ascending (default) or descending order
through the use of ASC or DESC keywords.
Example: Returns countries in alphabetical order.
SELECT * FROM countries
ORDER BY name;
Posted by: Guest on January-07-2021

Code answers related to "sql decreasing order"

Code answers related to "SQL"

Browse Popular Code Answers by Language