I want to make a query such that the result will be shown in indistinct descending order.
For example, assume column ID has six rows. I need an quer
You need to add an ORDER BY ID DESC to your select statement.
ORDER BY ID DESC
ORDER BY