Question
Easy

........... clause allows sorting of query results by one or more columns.

1
ORDER BY
2
ALL
3
WHERE
4
DISTINCT
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter:
Topic:
Correct Answer
Option A
Explanation

The correct option is (1): The ORDER BY clause in Structured Query Language (SQL) is the specific and primary command used to sort the data retrieved by a SELECT statement. When a query is executed, the database management system (DBMS) does not guarantee any particular order for the result rows unless an ORDER BY clause is explicitly used. This clause allows you to specify one or more columns by which…Read More