I have a mysql database with over 1000 product IDs. I am trying to sort the query by ID, but this happens:
I want to have the IDs displayed like:
1, 2, 3, 4, 5... 1000 etc
But, what happens, is mysql displayes it like:
1, 1000...1999, 2, 2000-2999, 3, 3000-3999
which screws everything up. This is just like windows numbering. How can I fix it so that it will sort like the first example?