Oracle
 sql >> Datenbank >  >> RDS >> Oracle

Vergleichen Sie BLOB mit anderen BLOBs in der Oracle-Datenbank

Siehe andere ähnliche Antworten, wie diese eins . "Wenn dbms_lob.compare(lob1, lob2) =0 ist, sind sie identisch."

select *
from documents dup
join documents orig on orig.document_id = 1
    and dup.document_id <> orig.document_id
where dbms_lob.compare(orig.blob, dup.blob) = 0;