Q. With SQL, how can you return all the records from a table named “Persons” sorteddescending by “FirstName”? (Solved)
1. SELECT * FROM Persons SORT BY ‘FirstName’ DESC
2. SELECT * FROM Persons ORDER FirstName DESC
3. SELECT * FROM Persons SORT ‘FirstName’ DESC
4. SELECT * FROM Persons ORDER BY FirstName DESC
- d. SELECT * FROM Persons ORDER BY FirstName DESC