hãy thử cái này:
select * from mytable where instr(cell, UNISTR(<UNICODE code of your character>))>0;
ví dụ:
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;
Đầu ra:
CELL
-----------------------------------------------------------------------------------------------
fünny string
1 row selected.
Đã chỉnh sửa:như @Wernfried Domscheit khuyến nghị tôi đã thay đổi CHR -> UNISTR, - thực sự điều này sẽ hoạt động với bất kỳ bộ ký tự nào