- (Except) (MDX)
중복된 멤버를 제거하고 두 집합 간의 차집합을 반환하는 집합 연산을 수행합니다.
구문
Set_Expression - Set_Expression
매개 변수
- Set_Expression
집합을 반환하는 유효한 MDX 식입니다.
반환 값
지정된 두 매개 변수에서 공유되지 않는 멤버가 포함된 집합입니다.
예
다음 예에서는 이 연산자의 사용 방법을 보여 줍니다.
// 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]