> I am new to SQL and am trying to sort some information. The data is
> being sorted, but not in the way I desire it to be.
[quoted text clipped - 20 lines]
>
> Thanks for any help.
Anthony,
Well, to answer your question, you are going to have to sort it based on
the numeric value after "Test-".
If you know that the first five characters are always going to be
"Test-", then you can use this order by statement:
order by convert(int, right(<field>, len(<field>) - len("Test-")))

Signature
- Nicholas Paldino [.NET/C# MVP]
- mvp@spam.guard.caspershouse.com
On Jan 17, 11:04 am, "C#Schroeder" <Anthony.Schroe...@gray-
research.com> wrote:
> I am new to SQL and am trying to sort some information. The data is
> being sorted, but not in the way I desire it to be.
[quoted text clipped - 20 lines]
>
> Thanks for any help.
Sorry Wrong forum. I thought I was in the SQL forum.