Nuta
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować się zalogować lub zmienić katalog.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
Returns the root of the hierarchy tree. GetRoot() is a static method.
Składnia
-- Transact-SQL syntax
hierarchyid::GetRoot ( )
-- CLR syntax
static SqlHierarchyId GetRoot ( )
Return Types
SQL Server return type: hierarchyid
CLR return type: SqlHierarchyId
Uwagi
Used to determine the root node in a hierarchy tree.
Examples
A. Transact-SQL example
The following example returns the root of the hierarchy tree:
SELECT OrgNode.ToString() AS Text_OrgNode, *
FROM HumanResources.EmployeeDemo
WHERE OrgNode = hierarchyid::GetRoot()
B. CLR example
The following code snippet calls the GetRoot() method:
SqlHierarchyId.GetRoot()