Q37
Which Clause is used to sort the stored data in alphabetical order?
A.
ORDER by CLAUSE
AnswerB.
MODIFY
C.
ALTER
D.
UPDATE
Answer: Option A
Solution
Answer: Option A
Solution:
To sort the stored data in alphabetical order in MySQL, you use the ORDER BY clause. This clause is used in SELECT queries to sort the result set based on specified columns, either in ascending (default) or descending order. Therefore, Option A is the correct answer.