Can anyone tell me how to compare column which has clob datatype in oracle for multiple values?
For one value we are comparing like
dbms_lob.compare(attr_value,'A')=0
Similarly if I want to know whether attr_value is in ('A','B','C','D'). I tried this:
dbms_lob.compare(attr_value,'A')=0 or dbms_lob.compare(attr_value,'B')=0 or ...
This is not giving me proper result. Is there any other way?
DBMS_LOB.COMPARE does an exact comparison between two LOB objects. The documentation says:
On Oracle 11g, you could use REGEXP_INSTR function:
I hope it helps.