The BIT_COMPLEMENT function performs the bitwise logical COMPLEMENT operation on the values in RAW r and returns the result RAW of the COMPLEMENT operation. The length of the result is equal to that of the input RAW r.
Applicability
This topic applies only to OceanBase Database Enterprise Edition. OceanBase Database Community Edition provides only the MySQL mode.
Syntax
UTL_RAW.BIT_COMPLEMENT (
r IN RAW)
RETURN RAW;
Parameters
| Parameter | Description |
|---|---|
| r | The RAW value for performing the COMPLEMENT operation. |
Return values
| Return value | Description |
|---|---|
| RAW | This value contains the result of the COMPLEMENT operation on r. |