from: http://stackoverflow.com/questions/153633/natural-sort-in-mysql
-- Natural Sort in MySQL SELECT names FROM your_table ORDER BY games + 0 ASC; SELECT alphanumeric, integer FROM sorting_test ORDER BY LENGTH(alphanumeric), alphanumeric; -- http://www.copterlabs.com/natural-sorting-in-mysql/