VE (mdx)
Mantıksal bir birlikte iki sayısal ifade gerçekleştirir.
Expression1 AND Expression2
Parameters
Expression1
Bir sayısal değer veren geçerli BIR çok boyutlu deyimler (MDX) ifade.Expression2
Bir sayısal değer veren geçerli BIR MDX ifade.
Return Value
Bir Boole değeri için her iki parametre değerlendirmek için doğru verir true; Aksi halde, false.
Remarks
The AND işleç treats both expressions as Boole values (zero, 0, as false; otherwise, true) before the işleç performs the logical conjunction. Aşağıdaki tabloda gösterilmektedir nasıl AND işleç mantıksal birlikte gerçekleştirir.
Expression1 |
Expression2 |
Dönüş Değeri |
---|---|---|
true |
true |
true |
true |
false |
false |
false |
true |
false |
false |
false |
false |
Example
-- 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])