Skip to content
Advertisement

How to number a fetched rows from MySQL with a limit of 10 in an ascending order

I have this table that is fetched from MySQL but I have a column on my website where it says id number which is supposed to number the rows but I wanted to sort the rows so the ones with the highest value shows first but now the id gets scattered because the one with the highest value is not number one and I want that to be although I can go change it manually. But I want this to be automated. So basically how do I number the rows so that no matter what the row is it just shows the number it is on the table?

so this is my code

JavaScript

Advertisement

Answer

You could modify your query to

JavaScript

which would run the 10 highest values of amount, ordered by id.
NB. ORDER BY is ascending by default. I only added ASC to be unambiguous.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement