Is there an elegant way to have performant, natural sorting in a MySQL database?
For example if I have this data set:
Just found this:
SELECT names FROM your_table ORDER BY games + 0 ASC
Does a natural sort when the numbers are at the front, might work for middle as well.