I have a varchar field that I want to sort numerically. Typical values are:
1A
1B
5
5A
9
10
10A
12B
and I essentially want to parse the integer at the beginning and sort on that integer. Is this possible in an ORDER BY query? Currently sorting this field gives the alphanumeric order
1A
1B
10
10A
10B
5
5A
9
Thanks in advance.
jhowe
1A
1B
5
5A
9
10
10A
12B
and I essentially want to parse the integer at the beginning and sort on that integer. Is this possible in an ORDER BY query? Currently sorting this field gives the alphanumeric order
1A
1B
10
10A
10B
5
5A
9
Thanks in advance.
jhowe