StringToBoolean (NoSQL 查詢)
適用於:NoSQL
將字串表示式轉換成布爾值。
語法
StringToBoolean(<string_expr>)
引數
描述 | |
---|---|
string_expr |
字串表達式。 |
傳回類型
傳回布爾值。
範例
下列範例說明此函式如何與各種數據類型搭配運作。
SELECT VALUE {
parseBooleanString: StringToBoolean("true"),
parseWithPrefix: StringToBoolean("true "),
parseWithSuffix: StringToBoolean(" false"),
parseWithWhitespace: StringToBoolean(" false "),
parseBoolean: StringToBoolean(true),
parseUndefined: StringToBoolean(undefined),
parseNull: StringToBoolean(null)
}
[
{
"parseBooleanString": true,
"parseWithPrefix": true,
"parseWithSuffix": false,
"parseWithWhitespace": false
}
]
備註
- 此函式不會使用索引。
- 如果無法轉換表示式,函式會傳
undefined
回 。
注意
如需 JSON 格式的詳細資訊,請參閱 https://json.org。