/*...*/ (程式註解) (MDX)
指出使用者提供的註解文字。
語法
/* Comment_Text */
參數
- Comment_Text
包含註解文字的字串。
備註
伺服器不會評估註解字元 /* 與 */ 之間的文字。 註解可以插在單獨一行或多維度運算式 (MDX) 陳述式之中。 多行的程式註解必須使用 /* 與 */ 來指示。
程式註解的最大長度沒有限制。 註解可以為巢狀;例如 /* Test /*Comment*/ Text*/ 就是巢狀註解的範例。
範例
以下範例示範此運算子的用法。
/* This member 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 /* Select from the Adventure Works cube. */
[Adventure Works]
WHERE
[Measures].[Gross Profit Margin]