Question:What is the correct SQL syntax for returning all the columns from a table named "Persons" sorted REVERSE alphabetically by "FirstName"?
A SELECT * FROM Persons WHERE FirstName ORDER BY FirstName DESC
B SELECT * FROM Persons SORT REVERSE 'FirstName'
C SELECT * FROM Persons ORDER BY -'FirstName'
D SELECT * FROM Persons ORDER BY FirstName DESC
+ AnswerD
+ Report