假设我在查询的层次结构中有一个计算成员
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]
)切换元组([X].[X].[Something], [Dept].[Dept].[Home Dept], [Measures].[All])
的结果,我怎么能指定,这个元组的所有内容都是particular value
。
所以如果我添加过滤器
WHERE
(
[X].[X].[Something]
)
到上面,它应该返回particular value
。