Answers for "sql clause order"

SQL
4

order by sql

//this_for_descending_order.. 
 SELECT * FROM TableName ORDER BY columnName DESC;
 // this_for_ascending_order..
SELECT * FROM TableName ORDER BY columnName ASC;
Posted by: Guest on October-02-2020
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"

Browse Popular Code Answers by Language