Sqlserver
 sql >> Base de données >  >> RDS >> Sqlserver

Comment puis-je facilement aplatir cette hiérarchie Sql Server dans une liste inclusive héritée ?

Vous pouvez le faire avec une expression de table commune récursive (cte).

WITH X (ProductId, CategoryId) AS (
    SELECT ProductId, CategoryId FROM #ProductCategory
    UNION ALL
    SELECT X.ProductId, C.ParentCategoryId FROM X
    INNER JOIN #Category C ON X.CategoryId = C.CategoryId
)
SELECT ProductId, CategoryId FROM X ORDER BY CategoryId, ProductId

Plus d'informations sur http://msdn.microsoft.com/en-us/ bibliothèque/ms186243.aspx