Order By Problem T-Sql

Posted by Nick LaMarca on Stack Overflow See other posts from Stack Overflow or by Nick LaMarca
Published on 2010-06-07T19:25:56Z Indexed on 2010/06/07 19:32 UTC
Read the original article Hit count: 240

Filed under:

I have a sql statement I am using a simple sort such as the following

Select numbers From theTable Order By numbers

What I get in return is the following 1 11 12 14 2 21 22 23 3 35 37 etc...

I want it to be ordered in normal order 1 2 3 4 5 6 etc...

© Stack Overflow or respective owner

Related posts about tsql