Vidyalelo
MySQL · Q37

MySQL

Programming · MySQL · question 37

Q37

Which Clause is used to sort the stored data in alphabetical order?

A.
ORDER by CLAUSE
Answer
B.
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.