[problem solved - i was able to change the datatype which solved the problem]
I've got a table and the rows have a values like:
65
393827
34
54
8
the data is stored as varchar....
currently if I use ORDER BY fieldname DESC I get something like:
34
393827
54
65
8
which is clearly not what I want..
What is the best way to write MySQL Queries to order these correctly? failing this any idea how to order a 3d array to solve this?
Is there a way to declare the field as int to have it ordered correctly?
cheers