Oracle
 sql >> Database >  >> RDS >> Oracle

Oracle SQL trova il carattere ¡ nei dati

prova questo:

select * from mytable where instr(cell, UNISTR(<UNICODE code of your character>))>0;

esempio:

create table mytable(
  cell varchar2(100)
);

insert into mytable values('normal string');
insert into mytable values('fünny string');
commit;

select * from mytable where instr(cell, UNISTR('\00fc'))>0;

Uscita:

CELL
-----------------------------------------------------------------------------------------------
fünny string

1 row selected.

Modificato:come consigliato da @Wernfried Domscheit, ho cambiato CHR --> UNISTR, - in effetti dovrebbe funzionare con qualsiasi set di caratteri