数据库把1行查询为n行

Posted by-lhc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据库把1行查询为n行相关的知识,希望对你有一定的参考价值。

一、效果展示

表中的数据:

查询到的数据:

二、SQL Server中实现

SELECT id,strAuthorId from cn_news where id<3;

with cte as
(select id,CHARINDEX(\',\',strAuthorId+\',\') as station,
 SUBSTRING(strAuthorId,1,CHARINDEX(\',\',strAuthorId+\',\')-1) as strAuthorIdSimple
 from cn_news
 union all
 select a.id,CHARINDEX(\',\',a.strAuthorId+\',\',b.station+1),
 SUBSTRING(a.strAuthorId,b.station+1,CHARINDEX(\',\',a.strAuthorId+\',\',b.station+1)-b.station-1)
 from cn_news as a
 join cte as b
 on a.id=b.id and CHARINDEX(\',\',a.strAuthorId+\',\',b.station+1)>0)
select * from cte where id<3;

  

以上是关于数据库把1行查询为n行的主要内容,如果未能解决你的问题,请参考以下文章

SQL查询从双重返回N行

安卓开发中SQLite数据库,用查询语句根据id查询所在行数据,求代码:判断若查到的所在行数据为空

sql [SQL查询片段]用于在命令行或通过R和其他工具使用SQL的快速代码段#tags:sql,R,text processing,命令li

rstudio怎么删除最后几行数据

sql合并重复的字段

mysql数据库--多表查询