Postgres/PADB 中没有 CTE 的递归自查询

Recursive self query in Postgres/PADB without CTEs

我正在使用缺少递归 CTE 的 PADB/Postgres。我正在尝试找到一种方法来编写仅使用常规 joins/unions 而不使用递归 CTE 的递归自连接。最简单的方法是什么?

我有一个 table 这样的:

PersonID | Initials | ParentID
1          CJ         NULL
2          EB         1
3          MB         1
4          SW         2
5          YT         NULL
6          IS         5

而且我希望能够获取仅与从特定人员开始的层次结构相关的记录。因此,如果我通过 PersonID=1 请求 CJ 的层次结构,我将得到:

PersonID | Initials | ParentID
1          CJ         NULL
2          EB         1
3          MB         1
4          SW         2

对于 EB,我会得到:

PersonID | Initials | ParentID
2          EB         1
4          SW         2

这是我能想到的最简单的解决方案。

select * from t where personid = '1' --needs replacement with personid you run for
union
select * from t where personid in (select personid from t where parentid = '1')
or parentid in (select personid from t where parentid = '1')

personid 需要替换为您需要查看层次结构的人。

SQL Fiddle: http://sqlfiddle.com/#!15/f1201/1