Computer Science, asked by forstudyraja, 4 months ago

With SQL, how can you return all the records from a table named "Persons" sorted descending by "FirstName"​

Answers

Answered by rohitkhajuria90
1

SELECT * FROM Persons

ORDER BY FirstName DESC;

Similar questions