gpt4 book ai didi

oracle - 从子记录中获取所有父记录

转载 作者:行者123 更新时间:2023-12-04 02:12:32 24 4
gpt4 key购买 nike

我有一个类似这样的oracle表

表名:注释

NoteID(PK)        NoteText    ParentNoteID
1 x -
2 y 1
3 z 2

在这里,我需要在 notetext 之上执行类似的查询,比如说,note.note_text like '%z%' 单独拉出第三条记录。

我也希望提取它的 parent 的记录。即在获得第三条记录后,通过类似的查询匹配我需要通过查看返回parentNoteID .So parent note of 3 rd record is 2 and parent record of 2 is 1.so the result should fetch所有三个记录。

要扩展这一点,如果我的 like 查询匹配两个子记录,显然它应该获取两者的所有父记录。

例子:

NoteID(PK)  NoteText    ParentNoteID
1 x -
2 y 1
3 z 2
4 a -
5 b 4
6 z 5

note.note_text like '%z%' 应该提取上述所有 6 条记录。

提前致谢埃斯瓦尔。

最佳答案

您将使用连接方式来执行此操作。

例如类似的东西

select *
from tbl1
start with note_text like '%z%'
connect by note_id = prior parent_note_id

会做的。

fiddle 示例:http://sqlfiddle.com/#!4/0c6ea/1

关于oracle - 从子记录中获取所有父记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15765423/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com