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; 

D Select name from students order by name reverse; 

E Select name from students order by name desc; 

F Select desc name from students; 

G Select reverse name from students; 

+ Answer
+ Report
Total Preview: 848

Copyright © 2024. Powered by Intellect Software Ltd