Sqlserver
 sql >> Datenbank >  >> RDS >> Sqlserver

Alle verschachtelten Kinder für eine Eltern-ID erhalten

Dieses Durcheinander erzeugt das Probenergebnis aus den Probendaten. Es ist immer noch nicht klar, was du denke, der Algorithmus sollte sein.

declare @CategoryItems as Table (
  CategoryName NVarChar(255),
  Label NVarChar(255),
  ProductId Int,
  ChildCategoryId Int,
  CategoryId Int );

declare @Categories as Table (
  CategoryId Int,
  Name NVarChar(100) );

insert into @CategoryItems ( CategoryName, Label, ProductId, ChildCategoryId, CategoryId ) values
  ( 'CategoryA', 'Widget A', 1, 0, 1 ),
  ( 'CategoryB', 'CategoryA', 0, 1, 2 ),
  ( 'CategoryC', 'Widget B', 2, 0, 3 );
insert into @Categories ( CategoryId, Name ) values
  ( 1, 'CategoryA' ),
  ( 2, 'CategoryB' ),
  ( 3, 'CategoryC' );

select * from @Categories;
select * from @CategoryItems;

declare @TargetProductId as Int = 1;

with Leonard as (
  -- Start with the target product.
  select 1 as [Row], ProductId, Label, CategoryId, ChildCategoryId
    from @CategoryItems
    where ProductId = @TargetProductId
  union all
  -- Add each level of child category.
  select L.Row + 1, NULL, CI.Label, CI.CategoryId, CI.ChildCategoryId
    from @CategoryItems as CI inner join
      Leonard as L on L.CategoryId = CI.ChildCategoryId ),
  Gertrude as (
    -- Take everything that makes sense.
    select Row, ProductId, Label, CategoryId, ChildCategoryId
      from Leonard
    union
    -- Then tack on an extra row for good measure.
    select L.Row + 1, NULL, C.Name, NULL, C.CategoryId
      from Leonard as L inner join
        @Categories as C on C.CategoryId = L.CategoryId
      where L.Row = ( select Max( Row ) from Leonard ) )
  select Row, ProductId, Label, CategoryId, ChildCategoryId
    from Gertrude
    order by Row;

Ich vermute, dass das Problem darin besteht, dass Sie Ihre Daten einseitig gemischt haben. Eine Hierarchie von Kategorien wird normalerweise so dargestellt:

declare @Categories as Table (
  CategoryId Int Identity,
  Category NVarChar(128),
  ParentCategoryId Int Null );

Der Stamm jeder Hierarchie wird durch ParentCategoryId is NULL angegeben . Dies ermöglicht die Koexistenz beliebig vieler unabhängiger Bäume in einer einzigen Tabelle und ist nicht von der Existenz irgendwelcher Produkte abhängig.

Wenn Produkte einer einzelnen (Unter-)Kategorie zugeordnet sind, fügen Sie einfach die CategoryId hinzu in den Products Tisch. Wenn ein Produkt mehreren (Unter-)Kategorien zugeordnet werden kann, möglicherweise in verschiedenen Hierarchien, verwenden Sie eine separate Tabelle, um sie zuzuordnen:

declare @ProductCategories as Table (
  ProductId Int,
  CategoryId Int );