2

SQLクエリの出力を次のように取得したい

1.1.1,1.1.2,1.1.3...

句ごとに注文しようとしましたが、次のように結果が得られます1.1.1,1.1.10,1.1.11,1.1.2,1.1.3...

私の手順は次のとおりです。

select * 
  from Projects,
 where iId in (select value 
                 from ParmsToList(@projectid,',')
              )
   And Projects.categoryid  > 0
 order by Projects.vProjectName
4

3 に答える 3

4

SQL Server 2008 以降:

select t.v
from (values ('1.1.1'), ('1.1.10'), ('1.1.11'), ('1.1.2'), ('1.1.3'), ('1.2.1'), ('10.1.1')) as t(v)
cross apply (
    select x = cast('<i>' + replace(v, '.', '</i><i>') + '</i>' as xml)
) x
order by x.value('i[1]','int'),x.value('i[2]','int'), x.value('i[3]','int')

SQL Server 2005 以降:

;with t(v) as (
    select '1.1.1' union all 
    select '1.1.10' union all 
    select '1.1.11' union all 
    select '1.1.2' union all 
    select '1.1.3' union all 
    select '1.2.1' union all 
    select '10.1.1'
)
select t.v
from t
cross apply (
    select x = cast('<i>' + replace(v, '.', '</i><i>') + '</i>' as xml)
) x
order by x.value('i[1]','int'),x.value('i[2]','int'), x.value('i[3]','int')

出力:

v
------
1.1.1
1.1.2
1.1.3
1.1.10
1.1.11
1.2.1
10.1.1
于 2012-09-14T10:04:18.157 に答える
4

1 つの方法は、それらを階層ノードのように見せることです。

;with t(f) as (
    select '1.1.1'  union
    select '1.1.10' union
    select '1.1.11' union
    select '1.1.2'  union
    select '1.1.3'
)
select
    *
from 
    t
order by
    cast('/' + replace(f, '.', '/') + '/' as hierarchyid)

為に

f
1.1.1
1.1.2
1.1.3
1.1.10
1.1.11
于 2012-09-14T09:45:44.873 に答える