The CONCAT function concatenates up to 12 RAW values into one RAW value. If the concatenated value exceeds 32767 bytes, it returns an error.
Applicability
This topic applies only to OceanBase Database Enterprise Edition. OceanBase Database Community Edition does not support this function.
Syntax
UTL_RAW.CONCAT (
r1 IN RAW DEFAULT NULL,
r2 IN RAW DEFAULT NULL,
r3 IN RAW DEFAULT NULL,
r4 IN RAW DEFAULT NULL,
r5 IN RAW DEFAULT NULL,
r6 IN RAW DEFAULT NULL,
r7 IN RAW DEFAULT NULL,
r8 IN RAW DEFAULT NULL,
r9 IN RAW DEFAULT NULL,
r10 IN RAW DEFAULT NULL,
r11 IN RAW DEFAULT NULL,
r12 IN RAW DEFAULT NULL)
RETURN RAW;
Parameters
r1 to r12 are the RAW values to be concatenated.
Return value
| Return value | Description |
|---|---|
| RAW | The concatenated value. |
Exceptions
If the total length of the input values exceeds the maximum allowed length of RAW (32767 bytes), an error is returned.
