REPLICATE (NoSQL 查詢)
適用於:NoSQL
將字串值重複指定的次數。
語法
REPLICATE(<string_expr>, <numeric_expr>)
引數
描述 | |
---|---|
string_expr |
字串表達式。 |
numeric_expr |
數值表達式。 |
傳回類型
傳回字串運算式。
範例
下列範例示範如何使用此函式來建置重複字串。
SELECT VALUE {
catchPhrase: REPLICATE("Cosmic", 3)
}
[
{
"catchPhrase": "CosmicCosmicCosmic"
}
]
備註
- 此函式不會使用索引。
- 結果的最大長度為 10,000 個字元。
(length(string_expr) * numeric_expr) <= 10,000
- 如果
numeric_expr
為 負 數或 非finite,則結果為undefined
。