I have a table that has an auto_incrementing, not null, int primary key called id. How do I order by the largest id?
I pull some records from a mysql database and display them on a page. When I order by id, they come out with 1, 2, 3, 4... I need ...4,3,2,1. Please Help.
-Frankie