I have the following types of titles in a table in my db:
Topic 1 blah blah
Topic 2 blah blah
Topic 3 blah blah
...
Topic 10 blah blah
Topic 11 blah blah
etc...
The select query will always return the results like this:
Topic 1 blah
Topic 10 blah blah
Topic 11 blah
...leaving out Topic 2, Topic 3 etc... until after all the teens will I get Topic 2 etc...
How can I get my results as:
Topic 1
Topic 2
Topic 3
.... all the way to Topic 9 and only then have Topic 10?