Q. Which Clause is used to sort the stored data in alphabetical order?
β
Correct Answer: (A)
ORDER by CLAUSE
Explanation: 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.