개인적인 정리

ORACLE EMPTY_BLOB(), EMPTY_CLOB() 본문

DB/ORACLE

ORACLE EMPTY_BLOB(), EMPTY_CLOB()

yeon.Biju 2020. 3. 30. 10:00

오라클 EMPTY_BLOB()

오라클 EMPTY_CLOB()

 

EMPTY_BLOB and EMPTY_CLOB return an empty LOB locator that can be used to initialize a LOB variable or, in an INSERT or UPDATE statement, to initialize a LOB column or attribute to EMPTY. EMPTY means that the LOB is initialized, but not populated with data.

 

An empty LOB is not the same as null LOB, and an empty CLOB is not the same as a LOB containing a string of 0 length.

 

 

UPDATE table_name set column_name = EMPTY_CLOB();

'DB > ORACLE' 카테고리의 다른 글

ORACLE FLOOR()  (0) 2020.03.30
ORACLE FIRST()  (0) 2020.03.30
ORACLE EXTRACT()  (0) 2020.03.30
ORACLE EXP()  (0) 2020.03.30
ORACLE DENSE_RANK()  (0) 2020.03.26
ORACLE DELETEXML()  (0) 2020.03.26
ORACLE DECODE()  (0) 2020.03.26
ORACLE CURRENT_TIMESTAMP()  (0) 2020.03.26
Comments