Nata
Norint pasiekti šį puslapį, reikalingas leidimas. Galite pabandyti prisijungti arba pakeisti katalogus.
Norint pasiekti šį puslapį, reikalingas leidimas. Galite pabandyti pakeisti katalogus.
The INTBITNOT function returns the result of a bitwise NOT operation on an integer value.
Syntax
INTBITNOT(<numeric_expr>)
Arguments
| Description | |
|---|---|
numeric_expr |
The numeric expression to complement. |
Return types
Returns a numeric expression.
Examples
This section contains examples of how to use this query language construct.
Bitwise NOT
In this example, the INTBITNOT function is used to perform a bitwise NOT operation.
SELECT VALUE {
complementNumber: INTBITNOT(65),
complementZero: INTBITNOT(0),
complementDecimal: INTBITNOT(0.1)
}
[
{
"complementNumber": -66,
"complementZero": -1
}
]