With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"
Answers
Answered by
1
SELECT * FROM Persons
ORDER BY FirstName DESC;
Similar questions