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