(MDX) OLDUĞU
İki nesne ifadeleri üzerinde mantıksal bir karşılaştırma yapar.
Sözdizimi
Expression1 IS ( Expression2 | NULL )
Parametreler
Expression1
mdx nesne başvurusu döndürür, geçerli bir çok boyutlu ifadeleri (mdx) ifade.Expression2
mdx nesne başvurusu döndürür, geçerli bir mdx ifade.
Dönüş Değeri
Döndüren Boole true , her iki bağımsız başvurmak aynı nesneye; Aksi takdirde, false.If the NULL keyword is specified, the operator returns true if Expression1 is null; otherwise, false.
Açıklamalar
The IS operator is often used to determine whether tuples and members are idempotent, meaning that they are exactly equivalent.
Örnekler
Aşağıdaki örnek, nasıl kullanılacağını gösterir IS , denetlemek için işleç geçerli üye bir eksen belirli bir üye:
With
//Returns TRUE if the currentmember is Bikes
Member [Measures].[IsBikes?] AS
[Product].[Category].CurrentMember IS [Product].[Category].&[1]
SELECT
{[Measures].[IsBikes?]} ON 0,
[Product].[Category].[Category].Members ON 1
FROM
[Adventure Works]