Order By clause in SQL with Example
It is the last clause of select statement responsible to arrange the records in a proper manner either ascending or descending order. To do so order by clause provides two attributes, asc and desc. Order by clause in SQL default order is asc. Syntax for Order By clause in SQL Better to read the previous …