SELECT test_column FROM test_table ORDER BY test_column gives me this:
SELECT test_column FROM test_table ORDER BY test_column
1 12 123 2 3
Why not:
1 2
This work me:-
ORDER BY cast(test_column as SIGNED)