Activity overview
Latest activity by Andy_H
Incorrect usage of UDF IsDescendantOf
DECLARE @Parent HIERARCHYID = '/'
SELECT *
FROM Customers_Hierarchy
WHERE CustomerHierarchy.IsDescendantOf(@Parent) = 1Hi,I'm trying to understand the SQL Prompt warning which says this is an inco...