- (Except) (MDX)
Esegue un'operazione SET che restituisce la differenza tra due set. I membri duplicati non vengono inclusi nel risultato.
Sintassi
Set_Expression - Set_Expression
Parametri
Set_Expression
Espressione MDX (Multidimensional Expression) valida che restituisce un set.
Valore restituito
Set che include i membri non presenti in entrambi i parametri specificati.
Osservazioni
Dal punto di vista funzionale, l'operatore - (Except) equivale alla funzione Except.
Esempi
Nell'esempio seguente viene illustrato l'utilizzo di questo operatore.
// 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])
Vedere anche
Riferimento
Guida di riferimento agli operatori MDX (MDX)