use
ORDER BY CONVERT(int, Your_Column)
Main Topics
Browse All TopicsI have a SQL 2000 table that has jersey numbers as a column (jerNumber). This column is a varchar(3) because I have to enter values such as 00, 04, 08, etc. Making this an int column is not an option. What I need to do is sort on this column to have the sort come out in numerical order like 0, 00, 01, 1, 02, 2, 3, 13, 23, 35, etc.
Any suggestions on how I can write the SQL statement to make this order correctly?
RCMB
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Sometimes it's not so simple, so here's a more in depth way of doing it:
Imagine you want to sort by the text column but not all values are numeric. (You still want the non-numeric values to be returned at the top or bottom of the recordset)
SELECT txt_value
FROM table_name
ORDER BY CASE WHEN ISNUMERIC(txt_value) = 1 THEN CONVERT(int, txt) ELSE 0 END
You can change the part:
ELSE 0
To
ELSE 999999
if you would prefer non-numeric values to be at the bottom of the recordset.
Or
ELSE -999999
if you're getting some negative integers in your result and the text fields are not at the top.
This post is probably no use to the asker but I thought it was worth posting anyway! ;)
Business Accounts
Answer for Membership
by: darkeryuPosted on 2005-10-24 at 21:18:25ID: 15151926
Hi:
select * from tablename order by convert(int,fieldName)
or
select * from tablename order by convert(float,fieldName)