| title | - (Except) (MDX) |
|---|---|
| description | Except (MDX) Operator |
| ms.date | 02/17/2022 |
| ms.service | sql |
| ms.subservice | analysis-services |
| ms.topic | reference |
| ms.custom | mdx |
Performs a set operation that returns the difference between two sets, removing duplicate members.
Set_Expression - Set_Expression
Set_Expression
A valid Multidimensional Expressions (MDX) expression that returns a set.
A set that contains members that are not shared by both specified parameters.
The - (Except) operator is functionally equivalent to the Except function.
The following example demonstrates the use of this operator:
// This query shows the quantity of orders for all product categories
// with the exception of Components.
SELECT
[Measures].[Order Quantity] ON COLUMNS,
[Product].[Product Categories].[All].Children
- [Product].[Product Categories].[Components] ON ROWS
FROM
[Adventure Works]