- (負号) (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]}