I need to add a column of type "CLOB" to the existing table in the database, so I am using the below query:
alter table foldet add("FOLDER_FIELD_VALUE_TWO" CLOB);
but I am getting the below error
Error starting at line : 5 in command - alter table foldet add("FOLDER_FIELD_VALUE_TWO" CLOB) Error report - SQL Error: DB2 SQL Error: SQLCODE=-104, SQLSTATE=42601, SQLERRMC=CLOB;DER_FIELD_VALUE_TWO";JOIN , DRIVER=3.63.75
How to add a column to the table?