- (Except) (MDX)
Performs a set operation that returns the difference between two sets, removing duplicate members.
The following example demonstrates the use of this operator.
// This query shows the quantity of orders for all products,
// with the exception of Assembly Components, which are not
// sold.
SELECT
[Date].[Calendar Month of Year].Children ON COLUMNS,
[Product].[Product Categories].[All].Children
- [Product].[Product Categories].[Assembly Components] ON ROWS
FROM
[Adventure Works]
WHERE
([Measures].[Order Quantity])