- (음수)(MDX)
숫자 식의 음수 값을 반환하는 단항 연산을 수행합니다.
구문
- Numeric_Expression
매개 변수
Numeric_Expression
숫자 값을 반환하는 유효한 MDX(다차원 식) 식입니다.
반환 값
지정된 매개 변수의 데이터 형식이 있는 음수 값입니다.
예
다음 예에서는 이 연산자의 사용 방법을 보여 줍니다.
-- This member creates a negative version of the
-- Reseller Freight Cost.
WITH MEMBER
Measures.[Resell Cost as Negative]
AS -Measures.[Reseller Freight Cost]
SELECT
[Date].[Calendar Month of Year].Children ON COLUMNS,
[Product].[Product Categories].Children ON ROWS
FROM
[Adventure Works]
WHERE
{[Measures].[Resell Cost as Negative]}