0 votes
in DBMS by (2.6k points)

ORDER BY clause: This clause is used to define the order of the query output either in ascending (ASC) or in descending (DESC). Ascending (ASC) is set as the default one but descending (DESC) is set explicitly.

Syntax:

SELECT column_name(s)

 FROM table_name

 WHERE condition

 ORDER BY column_name ASC|DESC;

Related questions

0 votes
asked Apr 22, 2020 in DBMS by Hodge (2.6k points)
0 votes
asked Apr 22, 2020 in DBMS by Hodge (2.6k points)
0 votes
asked Apr 22, 2020 in DBMS by Hodge (2.6k points)
0 votes
asked Apr 22, 2020 in DBMS by Hodge (2.6k points)
0 votes
asked Mar 31, 2020 in DBMS by amita rallin (731 points)
...