Q. With SQL, how can you return all the records from a table named “Persons” sorted descending by “FirstName”?
✅ Correct Answer: (A)
SELECT * FROM Persons ORDER BY FirstName DESC
You must be Logged in to update hint/solution