Q.

With SQL, how can you return all the records from a table named “Persons” sorted descending by “FirstName”?

A. SELECT * FROM Persons SORT BY ‘FirstName’ DESC
B. SELECT * FROM Persons ORDER FirstName DESC
C. SELECT * FROM Persons SORT ‘FirstName’ DESC
D. SELECT * FROM Persons ORDER BY FirstName DESC
Answer» D. SELECT * FROM Persons ORDER BY FirstName DESC
812
0
Do you find this helpful?
9

Discussion

No comments yet

Related MCQs