For example I have table1 that has column named "Column1" and it has the ff values: item 1, item 2, item 10, old item 3.5, old item 20.1
when I use SELECT Column1 FROM table1 ORDER BY Column1 ASC the result is:
-----------------
|Column1        |
-----------------
| item 1        |
| item 10       |
| item 2        |
| old item 20.1 |
| old item 3.5  |
is there a way that I can make it like this?
-----------------
|Column1        |
-----------------
| item 1        |
| item 2        |
| item 10       |
| old item 3.5  |
| old item 20.1 |
I see the post from MySQL order by string with numbers but it only has a fixed pattern.