Hello,
I'm grabbing the results out of a MySql DB and sorting them by a number. I've done this:
$sql = "SELECT * FROM TABLE_NAME ORDER BY NUMBERS_FIELD ASC";
The problem is, I'm getting results like this:
1
10
2
25
279
3
It's obviously sorting them alphabetically instead of numerically. Is there an easy way to re-word my query?