A commonly asked question by SQL users or those learning how to use SQL is if you can return all the records from a table named "Persons" sorted descending by "FirstName" with SQL? The answer is yes you can!
In order to return all the records from a table named "Persons" sorted descending by "FirstName" using SQL, you must SELECT FROM Persons ORDER BY FirstName DESC. SQL is a type of computing language that is used to communicate with databases. It is similar to a computer language but it is only specifically used for databases.