AND (MDX)
对两个数值表达式执行逻辑与运算。
语法
Expression1 AND Expression2
参数
Expression1
返回数值的有效多维表达式 (MDX) 表达式。
Expression2
返回数值的有效 MDX 表达式。
返回值
一个布尔值,如果两个参数的计算结果都为 true,则返回 true;否则为 false。
备注
AND 运算符将两个表达式视为布尔值, (零,0,为 false;否则,true) 运算符执行逻辑连接之前。 下表说明了 AND 运算符如何执行逻辑联接。
Expression1 | Expression2 | 返回值 |
---|---|---|
true | true | true |
true | false | false |
false | true | false |
false | false | false |
示例
-- This query returns the gross profit margin (GPM)
-- for clothing sales where the GPM is between 20% and 30%.
With Member [Measures].[LowGPM] as
IIF(
[Measures].[Gross Profit Margin] <= .3 AND
[Measures].[Gross Profit Margin] >= .2,
[Measures].[Gross Profit Margin],
null)
SELECT NON EMPTY
[Sales Territory].[Sales Territory Country].Members ON 0,
[Product].[Category].[Clothing] ON 1
FROM
[Adventure Works]
WHERE
([Measures].[LowGPM])