Suppose I have some data in my MySQL database such as:
01, 001, 2, 9, 009, 23, 15, 19, 09, 08, 1 etc. So, I want to sort the data ascending like:
001, 01, 1, 1, 2, 08, 009, 09, 9, 15, 19, 23 etc. If I use ORDER BY value ASC, It doesn't work. How should I be sorting it? I want the first value to be 1, then 2, 3 ..... Is that possible?