-(Minus) (MDX)
Wykonuje operację jednoargumentową, która zwraca wartość ujemną wyrażenie liczbowe.
Składnia
- Numeric_Expression
Parametry
- Numeric_Expression
Prawidłowe wyrażenie Multidimensional Expressions (MDX), które zwraca wartość liczbową.
Wartość zwracana
Wartość ujemna ma typ danych określony parametr.
Przykłady
Poniższy przykład demonstruje użycie tego operator.
-- 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]}