إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
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
}
]