I have the following values in my table:
a 3
a 5
a 7
aa 5
a 10
b 5
With the ORDER BY command I get the following:
a 10
a 3
a 5
a 7
aa 5
b 5
I want the following result:
a 3
a 5
a 7
aa 5
a 10
b 5
Any ideas how I can solve it in my SQL query?