Abs
Last updated
Last updated
The Abs()
function takes the absolute value of a number.
This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.
Returns an absolute number
Returns Invalid expression
if the parameter is not a valid number.
Name | Type | Required | Description |
---|---|---|---|
| numeric | a number |
Function call | Result |
---|---|
Abs(123.456) | 123.456 |
Abs(-123.456) | 123.456 |
Abs(1.23456*10^6) | 1234560 |