SELECT DISTINCT CLOB_COLUMN FROM TABLE;

后端 未结 7 835
情书的邮戳
情书的邮戳 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
    
    0 讨论(0)
提交回复
热议问题