Oracle 中 select 语句结果的逗号分隔列表
我有一个名为“人”的表。它包含人员的 ID 及其父 ID(只能有一个父 ID)。作为查询的结果,我想要一个具有第一列(人员 ID)和第二列(其子 ID 列表)的表。具体如何做到这一点?我已经阅读过有关 listagg 函数的信息,但我不确定它是否适合我的目的。 此查询生成一个空的第二列:
select t1.id, (从人员 t2 中选择 t2.id 其中 t2.parent_id = t1.id) 来自人 t1 其中 t1.status = '父级';
I have a table named "person". It contains person's id and it's parent id (only one parent is possible). As a result of a query, I want a table with first column - a person id, and a second column - a list of it's children id's. How exactly to do this? I've read about listagg function, but I'm not sure if it is appropriate for my purpose.
And this query produces an empty second column:
select t1.id,
(select t2.id from person t2
where t2.parent_id = t1.id) from person t1
where t1.status = 'parent';
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
或者
or
Mark 的 LISTAGG 实现绝对是 ORACLE 11GR2 的最佳选择。对于 11GR1 或 Oracle 10,您可以以完全相同的方式使用 wmsys.wm_Concat (可能需要 DBA 授予权限)
Mark's implementation of LISTAGG is definitely the way to go for ORacle 11GR2. For For 11GR1 or Oracle 10 you can use wmsys.wm_Concat instead in exactly the same way (may require a permissions grant from your DBA)
只是另一种方法来接近它......
Just another way to approach it ...
SELECT wmsys.wm_concat()
从 ;
这是有争议的,但它有效 - https://forums.oracle.com/forums/ thread.jspa?threadID=2205545
SELECT wmsys.wm_concat()
FROM ;
It's controversial, but it works - https://forums.oracle.com/forums/thread.jspa?threadID=2205545