Hi all.
I have mixed data i nvarchar column (words and numbers). Which is fastest way to sort data in this column in Numeric Order.
Result example:
- 1
- 2
- 3
- ...
- 10
- 11
- ...
- aaaa
- aaab
- b
- ba
- ba
- ...
|
|
Hi all. I have mixed data i nvarchar column (words and numbers). Which is fastest way to sort data in this column in Numeric Order. Result example:
|
|||
|
|
|
|
Use this:
This works as expected. Note: You say fastest way. This sql was fast for me to produce, but the execution plan shows a table-scan, followed by a scalar computation. This could possibly produce a temporary result containing all the values of that column with some extra temporary columns for the ISNUMERIC results. It might not be fast to execute. |
|||
|
|
|
Cast it.
Been a while since I've touched SQL Server, so my syntax might be entirely incorrect though :) |
||
|
|
|
You can either treat the data as alphanumeric, or numeric, not both at the same time. I don't think what you're trying to do is possible, the data model isn't set up appropriately. |
||
|
|
|
|
This example works fine
Result is:
But i need numbers first. |
||
|
|
|
|
--check for existance --create example table --populate example table --return the data |
||||
|
|
|
If you left pad your numbers with 0's and sort on that, you will get your desired results. You'll need to make sure that the number of 0's you pad with matches the size of the varchar column. Take a look at this example...
Also note that it is important when using a case statement that each branch of the case statement returns the same data type, or else you will get incorrect results or an error. |
||
|
|
|
|
This should work :
|
||
|
|