Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/vba/15.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Mdx “你做什么?”;“后代”;及;0,叶;什么意思?_Mdx - Fatal编程技术网

Mdx “你做什么?”;“后代”;及;0,叶;什么意思?

Mdx “你做什么?”;“后代”;及;0,叶;什么意思?,mdx,Mdx,我有以下MDX查询: select {[Measures].[Internet Sales Amount]} on axis(0), DESCENDANTS({[Customer].[Education].[All Customers].[Bachelors], [Customer].[Education].[All Customers].[Graduate Degree]},0,LEAVES) on axis(1) , DESCENDANTS({[Geography

我有以下MDX查询:

select {[Measures].[Internet Sales Amount]} on axis(0), 
DESCENDANTS({[Customer].[Education].[All Customers].[Bachelors],
             [Customer].[Education].[All Customers].[Graduate Degree]},0,LEAVES) on axis(1) ,
DESCENDANTS({[Geography].[Country].[All Geographies].[Australia],
         [Geography].[Country].[All Geographies].[Canada],
         [Geography].[Country].[All Geographies].[France]},0,LEAVES) on axis(2) 
from [Adventure Works]
后代
0的叶子
是什么意思?

听起来是一个奇怪的(生成的)请求;这意味着返回这些成员级别的成员(指定为第一个参数)的后代。我猜这相当于0,在这种情况下是SELF,因此相当于作为参数传递的成员:

{
 [Geography].[Country].[All Geographies].[Australia],
 [Geography].[Country].[All Geographies].[Canada],
 [Geography].[Country].[All Geographies].[France]
}
听起来是一个奇怪的(生成的?)请求;这意味着返回这些成员级别的成员(指定为第一个参数)的后代。我猜这相当于0,在这种情况下是SELF,因此相当于作为参数传递的成员:

{
 [Geography].[Country].[All Geographies].[Australia],
 [Geography].[Country].[All Geographies].[Canada],
 [Geography].[Country].[All Geographies].[France]
}