I have a text field in MSSQL, query made with ACCESS, where some of the data are 1.1.1, 2.3.2, 10.2.3. Right now, an ORDER BY on that field is made and the result is:
1.1.1
10.2.3
2.3.2
...
I'd prefer to order them in a 'numeric' way, like this:
1.1.1
2.3.2
10.2.3
Is that possible?
1.1.1
10.2.3
2.3.2
...
I'd prefer to order them in a 'numeric' way, like this:
1.1.1
2.3.2
10.2.3
Is that possible?