For processing rows in a specific sequence,
-
Use ORDER BY clause
-
Use ROW clause
-
Use ROW BY clause
-
None of the Above
A
Correct answer
Explanation
The ORDER BY clause in SQL is specifically designed to sort query results in a specified sequence. It allows you to arrange rows based on one or more columns in ascending or descending order. ROW and ROW BY are not valid SQL clauses for sorting purposes.