EMPTY_CLOB
EMPTY_CLOB(  )

Returns an empty CLOB locator, which can be used to initialize a CLOB column.

Example

SQL> CREATE TABLE x(c clob);

Table created.

SQL> INSERT INTO x (c) VALUES (EMPTY_CLOB(  ));

1 row created.

Unlike other functions, EMPTY_CLOB must be followed with parentheses even though no parameters are passed.

Get Oracle SQL: the Essential Reference now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.