日期:2014-05-18  浏览次数:20452 次

数组排序问题
有表A 表 。其中有 sz 字段 此字段是 varchar 型 。是数组 其中有6位数字。

把 6个 数字任意提取5个 组成数组,其中数字要按从小到大的顺序排列。
 
请把这些数组 排列出来。

如 A 表中 sz 字段有如下数据;
1 2 3 4 5 6 

5 7 9 10 12 23 
。。。。。

那么 1 2 3 4 5 6 组成的数组应该是 
1 2 3 4 5 
1 3 4 5 6 
2 3 4 5 6 

5 7 9 10 12 23 同理。  
sz字段中有很多数据,所以不能手工。 



------解决方案--------------------
SQL code

create table tb(id int identity(1,1),sz varchar(20))
insert into tb
select '1,2,3,4,5,6'
go

;with cte as
(
    select a.id,
        convert(int,substring(a.sz,b.number,charindex(',',a.sz+',',b.number+1)-b.number)) sz
    from tb a,master..spt_values b
    where b.type = 'P' and b.number between 1 and len(a.sz)
        and substring(','+a.sz,b.number,1) = ','
)

select a.id,a.sz,b.sz,c.sz,d.sz,e.sz
from cte a join cte b on a.id = b.id and a.sz < b.sz
           join cte c on b.id = c.id and b.sz < c.sz
           join cte d on c.id = d.id and c.sz < d.sz
           join cte e on d.id = e.id and d.sz < e.sz
group by a.id,a.sz,b.sz,c.sz,d.sz,e.sz

drop table tb

/****************************

id          sz          sz          sz          sz          sz
----------- ----------- ----------- ----------- ----------- -----------
1           1           2           3           4           6
1           1           2           4           5           6
1           1           2           3           4           5
1           2           3           4           5           6
1           1           2           3           5           6
1           1           3           4           5           6

(6 行受影响)