The “ORDER BY” Clause is use to ensure a specific order and returns records that is no particular order. It’s allows sorting by signal or multiples columns.
The Returned records can be “ascending” or “descending” order and the default order is ascending.
SELECT DISTINCT CountryName FROM Countries ORDER BY CountryName DESC
Examples:-
SELECT DISTINCT CountryName, CountryCode FROM Countries ORDER BY CountryName DESC
Result:-
CountryName CountryCode ---------------------------- USA US Rasia RA Nepal NP India IN
I hope you are enjoying
with this post! Please share with you friends. Thank you!!