sql 一列拼接成一行,再分割成列
Posted Mr.石
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 一列拼接成一行,再分割成列相关的知识,希望对你有一定的参考价值。
原始数据,需要拼接成一行
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 一列拼接成一行,再分割成列的主要内容,如果未能解决你的问题,请参考以下文章