Sqlserver
 sql >> Base de Dados >  >> RDS >> Sqlserver

obter todos os filhos aninhados para um ID pai


Essa confusão produz o resultado da amostra a partir dos dados da amostra. Ainda não está claro o que você acho que o algoritmo deveria ser.
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;

Suspeito que o problema é que você misturou seus dados de maneira desigual. Uma hierarquia de categorias geralmente é representada por algo como:
declare @Categories as Table (
  CategoryId Int Identity,
  Category NVarChar(128),
  ParentCategoryId Int Null );

A raiz de cada hierarquia é indicada por ParentCategoryId is NULL . Isso permite que qualquer número de árvores independentes coexista em uma única tabela e não depende da existência de nenhum produto.

Se os produtos forem atribuídos a uma única (sub)categoria, basta incluir o CategoryId em Products tabela. Se um produto pode ser atribuído a várias (sub)categorias, possivelmente em diferentes hierarquias, use uma tabela separada para relacioná-las:
declare @ProductCategories as Table (
  ProductId Int,
  CategoryId Int );