Postgresql递归自联接

我在postgres中的表如下所示,表存储了ID之间的一种链式关系,我想要一个可以产生结果的查询,如“vc1” – > “rc7”或“vc3” – >“rc7”,我只会查询第一列ID1中的ID
ID1     ID2
"vc1"   "vc2"
"vc2"   "vc3"
"vc3"   "vc4"
"vc4"   "rc7"

所以我想在这里提供一些“头”ID,我必须获取尾部(链中的最后一个)id.

这是使用递归CTE的sql
with recursive tr(id1,id2,level) as (
      select t.id1,t.id2,1 as level
      from t union all
      select t.id1,tr.id2,tr.level + 1
      from t join
           tr
           on t.id2 = tr.id1
     )
select *
from (select tr.*,max(level) over (partition by id1) as maxlevel
      from tr
     ) tr
where level = maxlevel;

HeresqlFiddle

相关文章

来源:http://www.postgres.cn/docs/11/ 4.1.1. 标识符和关键词 SQL标识符和关键词必须以一个...
来源:http://www.postgres.cn/docs/11/ 8.1. 数字类型 数字类型由2、4或8字节的整数以及4或8...
来源:http://www.postgres.cn/docs/11/ 5.1. 表基础 SQL并不保证表中行的顺序。当一个表被读...
来源:http://www.postgres.cn/docs/11/ 6.4. 从修改的行中返回数据 有时在修改行的操作过程中...
来源:http://www.postgres.cn/docs/11/ 13.2.1. 读已提交隔离级别 读已提交是PostgreSQL中的...
来源:http://www.postgres.cn/docs/11/ 9.7. 模式匹配 PostgreSQL提供了三种独立的实现模式匹...