共用方式為


Except (MDX)

評估兩個集合並且從第一個集合中移除同時存在於第二個集合中的 Tuple,選擇性地保留重複項。

語法

Except(Set_Expression1, Set_Expression2 [, ALL ] )

引數

  • Set_Expression1
    傳回集合的有效多維度運算式 (MDX) 運算式。

  • Set_Expression2
    傳回集合的有效多維度運算式 (MDX) 運算式。

備註

如果指定了 ALL,函數會保留第一個集合中發現的重複項目;但仍會移除第二個集合中發現的重複項目。成員依第一個集合中的出現順序傳回。

範例

以下範例示範此函數的用法。

   //This query shows the quantity of orders for all products,
   //with the exception of Components, which are not
   //sold.
SELECT 
   [Date].[Month of Year].Children  ON COLUMNS,
   Except
      ([Product].[Product Categories].[All].Children ,
         {[Product].[Product Categories].[Components]}
      ) ON ROWS
FROM
   [Adventure Works]
WHERE
   ([Measures].[Order Quantity])