The Column is a string, and the data inside of it can be
10
2
3
3.1
3.2
a10
a11
1
a12.2
a12.3
wanting the results back as:
1
2
3
3.1
3.2
10
a10
a11
a12.2
a12.3
This would be ASP/VBScript with a MSACCESS web database (Provider=Microsoft.Jet.OLEDB.4.0;Data Source)
If the non-number strings always begin with a single letter like in your sample, you can ORDER BY three column expressions.
If you don’t want those order_byX fields in your result set, move them into the ORDER BY clause instead.