SQL SERVER 拆分列为多行

--创建测试表
create table #temp (seq int identity,names varchar(200))
insert into #temp(names)
values('张三,李四'),
('中国,美国,巴西'),
('深圳,上海,北京,广州,哈尔滨'),
('足球,篮球,乒乓球,台球')

目的是要将用逗号分隔的names列拆分为多行,最终要产生的结果为:

1 张三

1 李四
2 中国
2 美国
2 巴西
3 深圳
3 上海
3 北京
3 广州
3 哈尔滨
4 足球
4 篮球
4 乒乓球
4 台球

 ;with cte as(
select 0 as n
union all
select N+1 from cte where n<100
)
,idx as (
select a.seq,b.n,ROW_NUMBER() over (partition by a.seq order by b.n) as id,','+a.names+',' as names
from #temp a
inner join cte b on b.n<=len(','+a.names+',' )
where SUBSTRING(','+a.names+',',b.n,1)=','
)
select a.seq,substring(a.names,a.n+1,b.n-a.n-1) as name
from idx a
inner join idx b on a.seq=b.seq and a.id=b.id-1
上一篇:ExtJs Panel 滚动条设置


下一篇:linux----ln