SELECT DISTINCT CLOB_COLUMN FROM TABLE;

后端 未结 7 841
情书的邮戳
情书的邮戳 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:35

    If it is acceptable to truncate your field to 32767 characters this works:

    select distinct dbms_lob.substr(FIELD_CLOB,32767) from Table1
    

提交回复
热议问题