gpt4 book ai didi

sql - 在自引用表上编写递归 SQL 查询

转载 作者:行者123 更新时间:2023-12-03 01:35:23 25 4
gpt4 key购买 nike

我有一个数据库,其中有一个名为 Items 的表,其中包含以下列:

  • ID - 主键、唯一标识符
  • 名称 - nvarchar(256)
  • ParentID - 唯一标识符

名称字段可用于构建项目的路径,方法是迭代每个 ParentId 直到它等于“11111111-1111-1111-1111-111111111111”(即根项目)。

因此,如果您有一个包含类似行的表格

ID                                   Name        ParentID
-------------------------------------------------------------------------------------
11111111-1111-1111-1111-111111111112 grandparent 11111111-1111-1111-1111-111111111111
22222222-2222-2222-2222-222222222222 parent 11111111-1111-1111-1111-111111111112
33333333-3333-3333-3333-333333333333 widget 22222222-2222-2222-2222-222222222222

因此,如果我在上面的示例中查找 id 为“33333333-3333-3333-3333-333333333333”的项目,我需要路径

/grandparent/parent/widget 

回来了。我试图编写一个 CTE,因为看起来这就是通常完成类似事情的方式 - 但由于我不做太多 SQL,所以我不太清楚我哪里出了问题。我查看了一些示例,这与我似乎能够得到的最接近 - 它只返回子行。

declare @id uniqueidentifier
set @id = '10071886-A354-4BE6-B55C-E5DBCF633FE6'
;with ItemPath as (
select a.[Id], a.[Name], a.ParentID
from Items a
where Id = @id

union all

select parent.[Id], parent.[Name], parent.ParentID
from Items parent
inner join ItemPath as a
on a.Id = parent.id
where parent.ParentId = a.[Id]
)
select * from ItemPath

我不知道如何为路径声明一个局部变量并在递归查询中继续附加到它。在继续之前,我打算至少尝试将所有行获取到父级。如果有人也能提供帮助 - 我将不胜感激。

最佳答案

这是可行的解决方案

SQL FIDDLE EXAMPLE

declare @id uniqueidentifier
set @id = '33333333-3333-3333-3333-333333333333'

;with ItemPath as
(
select a.[Id], a.[Name], a.ParentID
from Items a
where Id = @id

union all

select parent.[Id], parent.[Name] + '/' + a.[Name], parent.ParentID
from ItemPath as a
inner join Items as parent on parent.id = a.parentID
)
select *
from ItemPath
where ID = '11111111-1111-1111-1111-111111111112'

我不太喜欢它,我认为更好的解决方案是以其他方式进行。等一下,我尝试编写另一个查询:)

更新在这里

SQL FIDDLE EXAMPLE

create view vw_Names
as
with ItemPath as
(
select a.[Id], cast(a.[Name] as nvarchar(max)) as Name, a.ParentID
from Items a
where Id = '11111111-1111-1111-1111-111111111112'

union all

select a.[Id], parent.[Name] + '/' + a.[Name], a.ParentID
from Items as a
inner join ItemPath as parent on parent.id = a.parentID
)
select *
from ItemPath

现在您可以使用此 View

declare @id uniqueidentifier
set @id = '33333333-3333-3333-3333-333333333333'

select *
from vw_Names where Id = @id

关于sql - 在自引用表上编写递归 SQL 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13165398/

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