What is ‘ Order by clause ‘ in SQL ? How to use it?

ORDER BY clause is used in an SQL statement to sort the result set based on one or more columns. The basic syntax of the ORDER BY clause is as follows: In this syntax, column_name represents the name of the column that you want to use to sort the result set, and ASC or DESC […]