user76935
0
Q:

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;
21
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
*/
8
//this_for_descending_order.. 
 SELECT * FROM TableName ORDER BY columnName DESC;
 // this_for_ascending_order..
SELECT * FROM TableName ORDER BY columnName ASC;
1
SELECT q.* 
    FROM (SELECT TOP 3 * 
              FROM table 
              ORDER BY id DESC) q
    ORDER BY q.id ASC
0
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; 
9

New to Communities?

Join the community