Okay, I am not quite sure how to use these... I changed
ORDER BY field1, field2 DESC
to...
ORDER BY CAST(filed1 AS INT), CAST(field2 AS INT) DESC
but it didn't work, I also tried replace INT with SINGED and INTERGER. It kept giving me the error:
MySQL Error: You have an error in your SQL syntax near '(field1 AS INT), CAST(field2 AS INT) DESC' at line 5
What am I do doing wrong?