declare
vstr varchar2(30);
begin
vstr := ‘オレンジ100%ジュース’;
if (vstr LIKE ‘%\%%’ ESCAPE ‘\’) then
dbms_output.put_line(‘文字列に%が含まれています’);
end if;
end;
/