我正在尝试做一些应该很简单的事情,但我错过了一些东西。我正在尝试以分组和有序的形式返回一些分层数据。a 我不是试图解释,而是附上一张图片……听说它们值一千字:
请注意,硬编码值不好,因为主要选择标准将是 article_id,然后按照文章的第一个“根级别”article_comment_id 及其子节点排序,然后是下一个“根级别”article_comment_id及其子节点。
我提供了一个示例表和数据,以便您了解我的意思,以及显示我想要实现的目标的屏幕截图。
CREATE TABLE test_comment
(
article_comment_id bigserial NOT NULL,
article_id bigint NOT NULL,
parent_comment_id bigint,
comment text NOT NULL,
comment_depth integer,
CONSTRAINT test_comment_pkey PRIMARY KEY (article_comment_id )
)
INSERT INTO test_comment (article_comment_id, article_id, parent_comment_id, comment, comment_depth)
VALUES
(1, 100, 0, 'First Root Comment', 0)
,(5, 100, 0, 'Second Root Comment', 0)
,(2, 100, 1, 'Reply 1 to Root Comment', 1)
,(3, 100, 2, 'Reply 2 to Reply 1', 2)
,(4, 100, 3, 'Reply 3 to Reply 2', 3)
,(6, 100, 2, 'Reply 4 to Reply 1', 2)
,(7, 100, 5, 'Reply 5 to Second Root Comment', 1);
我试过这个,但它没有提供正确的顺序:
with recursive comment_list(article_comment_id, parent_comment_id, comment, article_id) AS (
select c.article_comment_id, c.parent_comment_id, c.comment, c.article_id
from test_comment c
where article_id = 100
union
select c.article_comment_id, c.parent_comment_id, c.comment, c.article_id
from test_comment c, comment_list cl
where c.article_comment_id = cl.article_comment_id
)
select * from comment_list;
无论如何,这个 PostgreSQL 特定查询可以与 JPA 一起使用吗?