Posts

Showing posts with the label Arrange or Sort the table in Ascending or Descending order

10 - Arranging or Sorting the table in Ascending or Descending order(Order by)

Image
  ORIGINAL TABLE GENERATED Arrange or Sort the table in Ascending  order select * from employees   order by  salary asc ; Arrange or Sort the table in  Descending order select * from employees   order by  salary desc ;