I am using oder by name in my sql query.
The following is the name in my table.
rama1
rama2
rama10
rama3
rama11
I am using the query to display the name order by name
the output is coming like,
rama1
rama10
rama11
rama2
rama3
But I need the output should be,
rama1
rama2
rama3
rama10
rama11
Please help me with the query to get the above output.
Thanks In advance