gpt4 book ai didi

sql - t-sql 递归查询

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

基于现有表,我使用 CTE 递归查询得出以下数据。但未能进一步应用它。

数据如下

id    name     parentid
--------------------------
1 project 0
2 structure 1
3 path_1 2
4 path_2 2
5 path_3 2
6 path_4 3
7 path_5 4
8 path_6 5

我想从上述数据递归地形成完整路径。意味着递归将给出以下输出。
FullPaths
-------------
Project
Project\Structure
Project\Structure\Path_1
Project\Structure\Path_2
Project\Structure\Path_3
Project\Structure\Path_1\path_4
Project\Structure\Path_2\path_5
Project\Structure\Path_3\path_6

谢谢

最佳答案

这是一个示例 CTE 来做到这一点:

declare @t table (id int, name varchar(max), parentid int)

insert into @t select 1, 'project' , 0
union all select 2, 'structure' , 1
union all select 3, 'path_1' , 2
union all select 4, 'path_2' , 2
union all select 5, 'path_3' , 2
union all select 6, 'path_4' , 3
union all select 7, 'path_5' , 4
union all select 8, 'path_6' , 5

; with CteAlias as (
select id, name, parentid
from @t t
where t.parentid = 0
union all
select t.id, parent.name + '\' + t.name, t.parentid
from @t t
inner join CteAlias parent on t.parentid = parent.id
)
select *
from CteAlias

关于sql - t-sql 递归查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2739699/

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