ABS (NoSQL 查詢)
適用於:NoSQL
傳回指定之數值運算式的絕對 (正) 值。
語法
ABS(<numeric_expr>)
引數
描述 | |
---|---|
numeric_expr |
數值表達式。 |
傳回類型
傳回數值運算式。
範例
下列範例示範在三個不同的數位上使用這個函式的結果。
SELECT VALUE {
absoluteNegativeOne: ABS(-1),
absoluteZero: ABS(0),
absoluteOne: ABS(1)
}
[
{
"absoluteNegativeOne": 1,
"absoluteZero": 0,
"absoluteOne": 1
}
]
備註
- 此函式的優點是使用 範圍索引。