- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何使用 PostgreSQL(版本 10.2)连接递归 CTE 中的父项列表?
例如,我有:
CREATE TABLE test (
id SERIAL UNIQUE,
parent integer references test(id),
text text NOT NULL
);
与:
INSERT INTO test(parent, text) VALUES
(NULL, 'first'),
(1, 'second'),
(2, 'third'),
(3, 'fourth'),
(NULL, 'top'),
(5, 'middle'),
(6, 'bottom');
我如何得到一棵包含特定项目的树,以及它的所有父级连接(或在一个数组中)给定它的 id?
到目前为止,我有以下查询来查看返回的内容,但我似乎无法添加正确的 WHERE 子句来返回正确的值:
WITH RECURSIVE mytest(SRC, ID, Parent, Item, Tree, JOINED) AS (
SELECT '1', id, parent, text, array[id], text FROM test
UNION ALL
SELECT '2', test.id, test.parent, test.text as Item, NULL,
concat(t.joined, '/', test.text)
FROM mytest as t
JOIN test ON t.id = test.parent
)
SELECT * FROM mytest;
这给了我整个集合,但是一旦我添加类似 WHERE id = 1 的东西,我就没有得到我期望的结果(我正在寻找项目和 parent 的串联列表)。
最佳答案
在自上而下方法中,初始查询应该只选择根(没有父项的项目),因此查询只返回每行一次:
with recursive top_down as (
select id, parent, text
from test
where parent is null
union all
select t.id, t.parent, concat_ws('/', r.text, t.text)
from test t
join top_down r on t.parent = r.id
)
select id, text
from top_down
where id = 4 -- input
如果您的目标是查找特定项目,自下而上方法更有效:
with recursive bottom_up as (
select id, parent, text
from test
where id = 4 -- input
union all
select r.id, t.parent, concat_ws('/', t.text, r.text)
from test t
join bottom_up r on r.parent = t.id
)
select id, text
from bottom_up
where parent is null
删除两个查询中的最终 where 条件以查看差异。
关于postgresql - 递归 CTE 将字段与任意点的父级连接起来,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53530272/
我正在尝试执行 vagrant up 但一直遇到此错误: ==> default: IOError: [Errno 13] Permission denied: '/usr/local/lib/pyt
我在容器 div 中有一系列动态创建的不同高度的 div。 Varying text... Varying text... Varying text... Varying text.
通过 cygwin 运行 vagrant up 时遇到以下错误。 stderr: /bin/bash: /home/vagrant/.ansible/tmp/ansible-tmp-14872260
今天要向小伙伴们介绍的是一个能够快速地把数据制作成可视化、交互页面的 Python 框架:Streamlit,分分钟让你的数据动起来! 犹记得我在做机器学习和数据分析方面的毕设时,
我是 vagrant 的新手,正在尝试将第二个磁盘添加到我正在用 vagrant 制作的虚拟机中。 我想出了如何在第一次启动虚拟机时连接磁盘,但是当我关闭机器时 然后再次备份(使用 'vagrant
我是一名优秀的程序员,十分优秀!