Let's say I'm trying to sort the Column "numbers"
numbers =
"1,
1.1,
1.1.1,
1.1.2,
1.1.10"
When I do
ORDER BY NUMBERS , the resulting sorted column is
numbers =
"1,
1.1,
1.1.1,
1.1.10,
1.1.2"
I know the original column is already sorted, but that's only for this example... Why does .10 show up before .2?