declare
vstr varchar2(10);
begin
vstr := ‘東京都’;
if (vstr LIKE ‘%京都%’) then
dbms_output.put_line(‘文字列に京都が含まれています’);
end if;
end;
/