Question: A table Students has a column called name which stores the names of the students. What will be the correct query to display the names of the students in reverse order?
A
Select name from students reverse;
B
Select name from students reverse name;
C
Select name from students order by name descending;