在论坛中出现的比较难的sql问题:1(字符串分拆+行转列问题 SQL遍历截取字符串)

Posted lonelyxmas

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在论坛中出现的比较难的sql问题:1(字符串分拆+行转列问题 SQL遍历截取字符串)相关的知识,希望对你有一定的参考价值。

原文:在论坛中出现的比较难的sql问题:1(字符串分拆+行转列问题 SQL遍历截取字符串)

最近,在论坛中,遇到了不少比较难的sql问题,虽然自己都能解决,但发现过几天后,就记不起来了,也忘记解决的方法了。

所以,觉得有必要记录下来,这样以后再次碰到这类问题,也能从中获取解答的思路。


求SQL遍历截取字符串

http://bbs.csdn.net/topics/390648078


从数据库中读取某一张表(数据若干),然后将某一字段进行截取。
比如:
字段A    字段B
a/a/c      x
a/b/c      x

切出来就变成:

字段1      字段2         字段3       字段B
a            a            c            x
b            b            c            x

数据不止一条  ,是遍历切取,求完整sql(从读取到遍历到截取到输出),求教。

另外还需要把列头进行排序,结果也需要按照字段1,字段2...进行排序


我的解法:

  1. if object_id(‘[tb]‘) is not null drop table [tb]
  2. go
  3. create table [tb](A varchar(40),B varchar(10))
  4. insert [tb]
  5. select ‘xx/xx/xx/xx/xx/xx‘,‘x‘ union all
  6. select ‘yy/yy/yy/yy/yy/yy‘,‘x‘
  7. go
  8. if OBJECT_ID(‘tempdb..#temp1‘) is not null
  9. drop table #temp1
  10. if OBJECT_ID(‘tempdb..#temp2‘) is not null
  11. drop table #temp2
  12. select *,IDENTITY(int,1,1) id into #temp1
  13. from tb
  14. declare @sql nvarchar(3000)
  15. declare @orderby nvarchar(100)
  16. set @sql = ‘‘;
  17. set @orderby = ‘‘;
  18. ;with t
  19. as
  20. (
  21. select ID,
  22. SUBSTRING(t.A, number ,CHARINDEX(‘/‘,t.a+‘/‘,number)-number) as v,
  23. b,
  24. row_number() over(partition by id order by @@servername) as rownum
  25. from #temp1 t,master..spt_values s
  26. where s.number >=1
  27. and s.type = ‘P‘
  28. and SUBSTRING(‘/‘+t.A,s.number,1) = ‘/‘
  29. )
  30. select * into #temp2
  31. from t
  32. select @sql = @sql + ‘,max(case when rownum = ‘+CAST(rownum as varchar)+
  33. ‘ then v else null end) as 列‘+CAST(rownum as varchar) ,
  34. @orderby = @orderby + ‘,列‘+CAST(rownum as varchar)
  35. from #temp2
  36. group by rownum
  37. order by rownum --加了排序
  38. set @sql = ‘select ‘+STUFF(@sql,1,1,‘‘)+ ‘,b‘ +
  39. ‘ from #temp2 group by id,b order by ‘+
  40. stuff(@orderby,1,1,‘‘)
  41. --select @sql
  42. exec(@sql)
  43. /*
  44. 列1 列2 列3 列4 列5 列6 b
  45. xx xx xx xx xx xx x
  46. yy yy yy yy yy yy x
  47. */





发布了416 篇原创文章 · 获赞 135 · 访问量 94万+

以上是关于在论坛中出现的比较难的sql问题:1(字符串分拆+行转列问题 SQL遍历截取字符串)的主要内容,如果未能解决你的问题,请参考以下文章

T-SQL切割字符串方法小结 2

Oracle中特殊字符&和'的处理方案

sql sp_xml_preparedocument 函数运用实例

Java开发中遇到最难的问题!java实际开发难吗

如何在python中部分拆分数据框的字符串元素? [复制]

一个觉得很难的C语言问题。对两个数字字符串相加。