Events
Mar 31, 11 PM - Apr 2, 11 PM
The biggest SQL, Fabric and Power BI learning event. March 31 – April 2. Use code FABINSIDER to save $400.
Register todayThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Returns the set of children of a specified member.
Member_Expression.Children
A valid Multidimensional Expressions (MDX) expression that returns a member.
The Children function returns a naturally ordered set that contains the children of a specified member. If the specified member has no children, this function returns an empty set.
The following example returns the children of the United States member of the Geography hierarchy in the Geography dimension.
SELECT [Geography].[Geography].[Country].&[United States].Children ON 0
FROM [Adventure Works];
The following example returns all members in the Measures dimension on the column axis, this includes all calculated members, and the set of all children of the [Product].[Model Name]
attribute hierarchy on the row axis from the Adventure Works cube.
SELECT
Measures.AllMembers ON COLUMNS,
[Product].[Model Name].Children ON ROWS
FROM
[Adventure Works]
Events
Mar 31, 11 PM - Apr 2, 11 PM
The biggest SQL, Fabric and Power BI learning event. March 31 – April 2. Use code FABINSIDER to save $400.
Register today