SELECT DISTINCT CLOB_COLUMN FROM TABLE;

后端 未结 7 899
情书的邮戳
情书的邮戳 2021-01-08 00:08

I would like to find the distinct CLOB values that can assume the column called CLOB_COLUMN (of type CLOB) contained in the table called COPIA.

I have selected a PRO

7条回答
  •  天命终不由人
    2021-01-08 00:21

    add TO_CHAR after distinct keyword to convert CLOB to CHAR

    SELECT DISTINCT TO_CHAR(CLOB_FIELD) from table1;   //This will return distinct values in CLOB_FIELD
    

提交回复
热议问题