“Wo Klausel für CLOB in Oracle” Code-Antworten

Wo Klausel für CLOB in Oracle

select * 
    from aTable 
   where dbms_lob.compare(aClobColumn, 'value') = 0
Graceful Gazelle

Wo Klausel für CLOB in Oracle

select * 
    from aTable 
   	where dbms_lob.compare(aClobColumn, 'value') = 0 //implicitly converting value to clob datatype
   
//for explicitly converting 'value' to clob data type.
  select * 
    from aTable 
   	where dbms_lob.compare(aClobColumn, to_clob('value')) = 0
//both does the same thing
Graceful Gazelle

Ähnliche Antworten wie “Wo Klausel für CLOB in Oracle”

Fragen ähnlich wie “Wo Klausel für CLOB in Oracle”

Weitere verwandte Antworten zu “Wo Klausel für CLOB in Oracle” auf Sql

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen