- (제외)(MDX)

중복된 멤버를 제거하고 두 집합 간의 차집합을 반환하는 집합 연산을 수행합니다.

구문

Set_Expression - Set_Expression

매개 변수

Set_Expression

집합을 반환하는 유효한 MDX 식입니다.

반환 값

지정된 두 매개 변수에서 공유되지 않는 멤버가 포함된 집합입니다.

주의

- (Except) 연산자는 Except 함수와 기능적으로 동일합니다.

다음 예에서는 이 연산자의 사용 방법을 보여 줍니다.

// 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])

참고 항목

참조

MDX 연산자 참조(MDX)

도움말 및 정보

SQL Server 2005 지원 받기