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
Use following statement....
select * from YOUR_TABLE_NAME ORDER BY ID DESC;