Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 1.23 KB

File metadata and controls

51 lines (38 loc) · 1.23 KB
title * (Crossjoin) (MDX)
description Crossjoin - MDX Operator Reference
ms.date 02/17/2022
ms.service sql
ms.subservice analysis-services
ms.topic reference
ms.custom mdx

Crossjoin - MDX Operator Reference

Performs a set operation that returns the cross product of two sets.

Syntax

  
Set_Expression * Set_Expression  

Parameter

Set_Expression
A valid Multidimensional Expressions (MDX) expression that returns a set.

Return Value

A set that contains the cross product of both specified parameters.

Remarks

The * (Crossjoin) operator is functionally equivalent to the Crossjoin function.

Examples

The following example demonstrates the use of this operator.

-- This query returns the gross profit margin for product types  
-- and reseller types crossjoined by year.  
SELECT   
    [Date].[Calendar].[Calendar Year].Members *  
    [Reseller].[Reseller Type].Children ON 0,  
    [Product].[Category].[Category].Members ON 1  
FROM  
    [Adventure Works]  
WHERE  
    ([Measures].[Gross Profit Margin])  

See Also

MDX Operator Reference (MDX)