Here is my test data (MySQL)
test1
test2
test3
test10
test11
mytest
I want to Order these record by text, and than by following number (if present):
mytest
test1
test2
test3
test10
test11
And When I use Order By
, my data is sorted as text, like so:
mytest
test1
test10
test11
test2
test3
Could anyone provide me a solution?