码迷,mamicode.com
首页 > 数据库 > 详细

sql 一列拼接成一行,再分割成列

时间:2018-07-06 15:58:14      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:val   master   charindex   sel   技术   string   HERE   desc   des   

 技术分享图片

原始数据,需要拼接成一行

技术分享图片

 

select * from (select d.*,(SELECT count ([Keyword])FROM [DragonGuoShi].[dbo].[ArticleInfo]where Keyword like‘%‘+d.Keyword+‘%‘ and [ArticleCreateDate]>‘2018-06-10‘) as Num from (select distinct(Keyword) from( select SUBSTRING( Keyword,number,CHARINDEX(‘,‘,Keyword+‘,‘,number)-number) as Keyword from( SELECT stuff((SELECT ‘,‘+[Keyword] from (SELECT [Keyword]FROM [DragonGuoShi].[dbo].[ArticleInfo]where Keyword!=‘‘ and [ArticleCreateDate]>‘2018-06-10‘)a for xml path(‘‘)),1,1,‘‘) as Keyword)b ,master..spt_values where
number >=1 and number<=len(Keyword)
and type=‘p‘
and substring(‘,‘+Keyword,number,1)=‘,‘) c ) d ) e where Num>20 order by Num desc

 结果

技术分享图片

 

sql 一列拼接成一行,再分割成列

标签:val   master   charindex   sel   技术   string   HERE   desc   des   

原文地址:https://www.cnblogs.com/shiyh/p/9273686.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!