sql order by
SELECT * FROM table_name ORDER BY column_name ASC|DESC
/*table_name: name of the table.
column_name: name of the column ;data is needed to be arranged.
ASC: to sort the data in ascending order.
DESC: to sort the data in descending order.
| : use either ASC or DESC to sort in ascending or descending order
*/
sql order by
//this_for_descending_order..
SELECT * FROM TableName ORDER BY columnName DESC;
// this_for_ascending_order..
SELECT * FROM TableName ORDER BY columnName ASC;
order by sql
The SQL ORDER BY Keyword:
--------------------------------
The ORDER BY keyword is used to sort the result-set in ascending or descending order.
The ORDER BY keyword sorts the records in ascending order by default. To sort the records in descending order, use the DESC keyword.
ORDER BY Syntax:
--------------------------------
SELECT column1, column2, ...
FROM table_name
ORDER BY column1, column2, ... ASC|DESC;
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;