Oracle 中的家谱查询
我正在尝试从 Oracle 数据库中获取动物谱系树。
这是表格:
Animal
------------------------
Animal_ID
Parent_Male_ID
Parent_Female_ID
....
....
------------------------
如果我指定一种动物,我可以使用类似这样的方法获得它的所有后代(在雄性方面):
SELECT *
FROM animal
START WITH animal_id = 123
CONNECT BY PRIOR animal_id = parent_male_id
我正在尝试找到一种方法来扩展它,如果我指定一种动物,它将获取父母双方,然后获取他们的所有后代。
有什么想法吗? (这是Oracle 9.2)
I'm trying to fetch a genealogy tree of animals from my Oracle database.
Here's the table:
Animal
------------------------
Animal_ID
Parent_Male_ID
Parent_Female_ID
....
....
------------------------
If I specify an animal, I can get all of its descendants (on the male side) using something like this:
SELECT *
FROM animal
START WITH animal_id = 123
CONNECT BY PRIOR animal_id = parent_male_id
I'm trying to find a way to extend this in such a way that if I specify an animal, it will fetch both parents and then will fetch all of their descendants.
Any thoughts? (this is Oracle 9.2)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
然而,这个查询会非常慢。
最好使用这个:
,它将使用
HASH JOIN
并且速度更快。有关性能详细信息,请参阅我的博客中的此条目:
This query, however, will be quite slow.
Better to use this one:
, which will use
HASH JOIN
and is much faster.See this entry in my blog for performance details: