Try order the text in int form in MSSQL
seems mssql does not have anything try catch situation
when we want to sort a string column containing integer / double
e.g.
If we sort, 1, 5, 23. it will becomes
1
23
5
however, we can perform that using Convert(column, int). But ..... if there is a row which is a non numeric integer, then a error will be happened....
Read more »
Labels: MSSQL
