除了 (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])