我有一组具有唯一节点的连接边。它们使用父节点连接。考虑以下示例代码和插图:
CREATE TABLE network (
node integer PRIMARY KEY,
parent integer REFERENCES network(node),
length numeric NOT NULL
);
CREATE INDEX ON network (parent);
INSERT INTO network (node, parent, length) VALUES
(1, NULL, 1.3),
(2, 1, 1.2),
(3, 2, 0.9),
(4, 3, 1.4),
(5, 4, 1.6),
(6, 2, 1.5),
(7, NULL, 1.0);
Run Code Online (Sandbox Code Playgroud)
在视觉上,可以识别两组边缘。如何使用 PostgreSQL 9.1 识别这两个组并length
求和?预期结果显示:
edges_in_group | total_edges | total_length
----------------+-------------+--------------
{1,2,3,4,5,6} | 6 | 7.9
{7} | 1 | 1.0
(2 rows)
Run Code Online (Sandbox Code Playgroud)
我什至不知道从哪里开始。我需要自定义聚合或窗口函数吗?我可以WITH RECURSIVE
用来迭代收集连接的边吗?我的真实案例是一个有 245,000 …
postgresql aggregate recursive-query common-table-expression window-functions