AND (MDX)
2 つの数値式の論理積演算を実行します。
構文
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])