假设我在查询中的层次结构上有一个计算成员
WITH
MEMBER [Dept].[Dept].[Home Dept] AS
[Dept].[Dept].&[Cooking] + [Dept].[Dept].&[Cleaning]
SELECT
{
[Measures].[Some Amount]
} ON 0,
NON EMPTY
{
[Dept].[Dept].[Dept].MEMBERS
+ [Dept].[Dept].[Home Dept]
- [Dept].[Dept].&[Cooking]
- [Dept].[Dept].&[Cleaning]
} ON 1
FROM
[MyCube]
我怎么能指定如果我用另一个层次结构(比如[X].[X].[Something]
)切片 tuple 的结果([X].[X].[Something], [Dept].[Dept].[Home Dept], [Measures].[All])
,沿着这个 tuple 的所有东西都是particular value
.
所以如果我添加过滤器
WHERE
(
[X].[X].[Something]
)
到上面,它应该返回particular value
.