I have a "Location" data set returned by a simple query from a MySQL database:
A1
A10,
A2
A3
It is sequenced by an "Order By Location" statement. The issue is that I would like the returned sequence to be:
A1
A2
A3
A10
I am not sure if this is achievable with a MySQL Order By statement?