Is it possible to order alphabetically in mySQL in the following fashion:
A1
A2
A3
A5
A10
A11
A20
A23
A24
Unfortunately the order that I am getting is ordered as seen below here. Notice how any number before A10 aren't grouped together?
A1
A10
A11
A12
A2 < A2
A20
A23
A24
A3 < A3
A5 < A5
Note: These alphanumeric strings are actually postal codes, so I cannot put A01, because that's not technically a postal code prefix. I would also like to avoid having the user to enter in other data to help the system sort it properly, because my users aren't very web savvy. Also, these alphanumeric strings will not be able to be input into the database in the correct order because they can be deleted and added at anytime.