共用方式為


TupleToStr (MDX)

傳回多維度運算式 (MDX)–對應至指定 Tuple 的格式化字串。

語法

TupleToStr(Tuple_Expression) 

引數

  • Tuple_Expression
    傳回 Tuple 的有效多維度運算式 (MDX) 運算式。

備註

這個函數是用來將 Tuple 的字串表示傳送至外部函數,以進行剖析。所傳回的字串以大括號 {} 括住,如果在 Tuple 中明確定義一個以上的成員,則會以逗號分隔每個成員。

範例

下列範例會傳回字串 ([Date].[Calendar Year].&[2001],[Geography].[Geography].[Country].&[United States]):

WITH MEMBER Measures.x AS TupleToStr 
   ( 
      ([Date].[Calendar Year].&[2001]
         , [Geography].[Geography].[Country].&[United States]
      )
   )   
SELECT Measures.x ON 0
FROM [Adventure Works]

下列範例會傳回和上一個範例相同的字串。

WITH SET s AS 
   {
      ([Date].[Calendar Year].&[2001],
         [Geography].[Geography].[Country].&[United States]
      ) 
   }
MEMBER Measures.x AS TupleToStr ( s.Item(0) )
SELECT Measures.x ON 0
FROM [Adventure Works]

請參閱

參考