6

我有这个

declare @testtable table (test nvarchar(max))


insert into @testtable (test) values ('1.2.3')
insert into @testtable (test) values ('1.20.3')
insert into @testtable (test) values ('1.19.x')
insert into @testtable (test) values ('1.x.x')
insert into @testtable (test) values ('1.19.3')
insert into @testtable (test) values ('DEC09')
insert into @testtable (test) values ('Plutonium')
insert into @testtable (test) values ('dec09')
insert into @testtable (test) values ('N/A')
insert into @testtable (test) values ('MyTest20')
insert into @testtable (test) values ('20MyTest')
insert into @testtable (test) values ('1.4.18')
insert into @testtable (test) values ('1.4.168')

select * from @testtable
order by test asc;

哪个输出

1.19.3
1.19.x
1.2.3
1.20.3
1.4.168
1.4.18
1.x.x
20MyTest
DEC09
dec09
MyTest20
N/A
Plutonium

但我希望输出顺序是

1.2.3
1.4.18
1.4.168
1.19.3
1.19.x
1.20.3
1.x.x
20MyTest
DEC09
dec09
MyTest20
Plutonium
N/A

(请注意,N/A 是“神奇的”并且总是最大的,“版本”(例如 1.2.3)总是有 3 位数字,尽管一个或多个数字可能是 char x 来表示“任何数字”,这应该总是被认为是最大的可能数字)

如何在 SQL Server 中完成此操作?

4

2 回答 2

3
select TT.*
from @testtable as TT
order by case when TT.test = 'N/A' then 1 else 0 end,
         case when isnumeric(parsename(test, 3)+'E+00') = 1 then cast(parsename(test, 3) as int) else 99999 end,
         case when isnumeric(parsename(test, 2)+'E+00') = 1 then cast(parsename(test, 2) as int) else 99999 end,
         case when isnumeric(parsename(test, 1)+'E+00') = 1 then cast(parsename(test, 1) as int) else 99999 end,
         test
于 2012-04-23T09:43:42.903 回答
0

这应该很容易。

创建一个包含 2 列的新表:

OrderValue 字符串

描述字符串

按您想要的顺序放置值

a- 1.2.3

b- 1.4.18

c- 1.4.168

d- 1.19.3

e- 1.19.x

f- 1.20.3

g- 1.xx

h- 20MyTest

i- DEC09

j- dec09

k- MyTest20

l- 钚

m- 不适用

现在用这个新表加入测试表并按“OrderValue”排序

这就对了

于 2012-04-23T15:27:40.413 回答