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
/* In the most simple and basic way, you can write it as */
SELECT ID FROM your_table_name ORDER BY ID DESC;
/* This should work fine with your problem and should give you your desired output */