vote up 3 vote down star

I have a VARCHAR column in a SQL Server 2000 database that can contain either letters or numbers. It depends on how the application is configured on the front-end for the customer.

When it does contain numbers, I want it to be sorted numerically, e.g. as "1", "2", "10" instead of "1", "10", "2". Fields containing just letters, or letters and numbers (such as 'A1') can be sorted alphabetically as normal. For example, this would be an acceptable sort order.

1
2
10
A
B
B1

What is the best way to achieve this?

flag

7 Answers

vote up 5 vote down check

One possible solution is to pad the numeric values with a character in front so that all are of the same 'string' length. Here is an example that uses this approach:

select MyColumn
from MyTable
order by 
    case IsNumeric(MyColumn) 
    	when 1 then Replicate(Char(0), 100 - Len(MyColumn)) + MyColumn
    	else MyColumn
    end

The actual lenght of the column should be used instead of 100 in the example above.

link|flag
I have found that one of the fields in our test database contains 12345678901234567890 which causes problems with the other solutions. Admittedly this is unlikely to happen on a live customer database, but if it did, this solution would be able to handle it successfully. – Tim C Sep 23 '08 at 8:46
vote up 2 vote down

There are a few possible ways to do this.

One would be

SELECT
 ...
ORDER BY
  CASE 
    WHEN ISNUMERIC(value) = 1 THEN CONVERT(INT, value) 
    ELSE 9999999 -- or something huge
  END,
  value

the first part of the ORDER BY converts everything to an int (with a huge value for non-numerics, to sort last) then the last part takes care of alphabetics.

Note that the performance of this query is probably at least moderately ghastly on large amounts of data.

link|flag
The tables tend to be simple 'reference' tables, and don't have a huge number of rows (A few hundred at most, so performance wouldn't be a major issue). – Tim C Sep 23 '08 at 8:16
Going by the experts exchange article I link here: stackoverflow.com/questions/119730/… I think you have to cast to MONEY then INT to avoid '$' being read as numeric – Graphain Sep 23 '08 at 8:28
vote up 1 vote down

This seems to work:

select your_column
from your_table
order by
case when isnumeric(your_column) = 1 then your_column else 999999999 end,
your_column

link|flag
vote up 1 vote down
select
  Field1, Field2...
from
  Table1
order by
  isnumeric(Field1) desc,
  case when isnumeric(Field1) = 1 then cast(Field1 as int) else null end,
  Field1

This will return values in the order you gave in your question.

Performance won't be too great with all that casting going on, so another approach is to add another column to the table in which you store an integer copy of the data and then sort by that first and then the column in question. This will obviously require some changes to the logic that inserts or updates data in the table, to populate both columns. Either that, or put a trigger on the table to populate the second column whenever data is inserted or updated.

link|flag
Nice alternative suggestion. – Graphain Sep 23 '08 at 8:29
This doesn't work, it puts '10' before '2' – David B Sep 23 '08 at 13:37
slaps head So it does! Well, did... have patched it now. Did my classic mistake of fiddling with a working solution after testing! Well spotted, thanks. – Luke Sep 23 '08 at 13:48
vote up 0 vote down
SELECT FIELD FROM TABLE
ORDER BY 
  isnumeric(FIELD) desc, 
  CASE ISNUMERIC(test) 
    WHEN 1 THEN CAST(CAST(test AS MONEY) AS INT)
    ELSE NULL 
  END,
  FIELD

As per this link you need to cast to MONEY then INT to avoid ordering '$' as a number.

link|flag
vote up 0 vote down

Here is alternative solution:

SELECT    AColumn
FROM      ATable 
ORDER BY 
         ISNUMERIC( AColumn ) DESC , -- this will place the numbers on the top
         REVERSE( CAST( REVERSE( AColumn ) AS CHAR( 100 ) ) )

EDIT:

Make sure you put the right data size in CHAR( 100 ) , eventually change it to NCHAR( size ) if needed

Comments : David has a comment below... David, the question was "What is the best way to achieve this?" Please use the voting system to at least let me know if my solution is bad. I wouldn't mind if you tell me (and others like me) what's wrong with this aproach. Being ironic is not really helping anyone.

link|flag
Wow... relying on Char's space-padding behavior to add spaces to the start of a varchar? Really?? – David B Sep 23 '08 at 13:33
David, could you please explain what is wrong with CAST to CHAR type here? – leoinfo Oct 9 '08 at 15:07
vote up 0 vote down

also note that IsNumeric returns 1 for values 24e4 and 12d34

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.