This question asked in CBSE SQP-2020
Which clause is used to sort the records of a table?
Answer:
The ORDER BY clause is used to sort the records of a table.
Syntax:
SELECT
column1
,
column2, ...
FROM
table_name
ORDER
BY
column1, column2, ...
ASC
|
DESC
;
Example: