Udostępnij za pośrednictwem


A (MDX)

Wykonuje połączeniu logiczną dwóch wyrażeń liczbowych.

Expression1 AND Expression2

Parameters

  • Expression1
    Prawidłowe wyrażenie Multidimensional Expressions (MDX), które zwraca wartość liczbową.

  • Expression2
    Prawidłowe wyrażenie MDX, które zwraca wartość liczbową.

Return Value

Zwraca wartość true, jeśli oba parametry mają logiczny true; w przeciwnym razie false.

Remarks

The AND operator treats both expressions as logiczny values (zero, 0, as false; otherwise, true) before the operator performs the logical conjunction. W poniższej tabela pokazano, w jaki sposób AND operator wykonuje logiczną połączeniu.

Expression1

Expression2

Wartość zwracana

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])