//this_for_descending_order..
SELECT * FROM TableName ORDER BY columnName DESC;
// this_for_ascending_order..
SELECT * FROM TableName ORDER BY columnName ASC;
SELECT * FROM table_name ORDER BY col1 ASC; -- ASCending is default
SELECT * FROM table_name ORDER BY col1 DESC; -- DESCending
SELECT * FROM table_name ORDER BY col1 DESC, col2; -- col1 DESC then col2 ASC
SELECT *
FROM Customers
ORDER BY age ASC;
SELECT *
FROM employees
ORDER BY employees.employee_id DESC ;
SELECT last_name, age
FROM Customers
WHERE NOT country = 'UK'
ORDER BY last_name DESC;
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;
SELECT *
FROM Customers
ORDER BY first_name;
ORDER BY: is for sorting result
either in descending or ascending order.