Farklı (MDX)
küme değerlendirir, yinelenen dizilerini gelen ayarlandığı kaldırır ve sonuç kümesi verir.
Distinct(Set_Expression)
Bağımsız değişkenler
- Set_Expression
Sayı geçerli bir çok boyutlu deyimler (MDX) ifade bir küme.
Remarks
If the Distinct işlev finds duplicate tuples in the specified küme, the işlev keeps only the first örnek of the duplicate tanımlama grubu while leaving the order of the küme intact.
Örnekler
Aşağıdaki örnek sorgu adlandırılmış bir kümesiyle DISTINCT işlev nasıl yanı sıra, Count işlev ile bir kümedeki farklı dizilerini sayısını bulmak için nasıl kullanılacağını göstermektedir:
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]