| title | FirstChild (MDX) |
|---|---|
| description | FirstChild (MDX) |
| ms.date | 02/17/2022 |
| ms.service | sql |
| ms.subservice | analysis-services |
| ms.topic | reference |
| ms.custom | mdx |
Returns the first child of a specified member.
Member_Expression.FirstChild
Member_Expression
A valid Multidimensional Expressions (MDX) expression that returns a member.
The following query returns the first child of fiscal year 2003 in the Fiscal hierarchy, which is the first semester of Fiscal Year 2003.
SELECT [Date].[Fiscal].[Fiscal Year].&[2003].FirstChild ON 0
FROM [Adventure Works]