Distinct (MDX)

对指定的集求值,删除该集中的重复元组,然后返回结果集。

语法

Distinct(Set_Expression)

参数

  • Set_Expression
    返回集的有效多维表达式 (MDX)。

注释

如果 Distinct 函数在指定的集中找到了重复的元组,则此函数只保留重复元组的第一个实例,同时保留该集原来的顺序。

示例

以下示例查询说明如何将 Distinct 函数与命名集一起使用,以及如何将该函数与 Count 函数一起使用来查找集中不同元组的数目:

WITH SET MySet AS

{[Customer].[Customer Geography].[Country].&[Australia],[Customer].[Customer Geography].[Country].&[Australia],

[Customer].[Customer Geography].[Country].&[Canada],[Customer].[Customer Geography].[Country].&[France],

[Customer].[Customer Geography].[Country].&[United Kingdom],[Customer].[Customer Geography].[Country].&[United Kingdom]}

MEMBER MEASURES.SETCOUNT AS

COUNT(MySet)

MEMBER MEASURES.SETDISTINCTCOUNT AS

COUNT(DISTINCT(MySet))

SELECT {MEASURES.SETCOUNT, MEASURES.SETDISTINCTCOUNT} ON 0,

DISTINCT(MySet) ON 1

FROM [Adventure Works]

请参阅

参考

MDX 函数参考 (MDX)