declare
vstr varchar2(10);
begin
vstr := ‘東京’;
if (vstr IN (‘茨城’,’栃木’,’群馬’,’埼玉’,’千葉’,’東京’)) then
dbms_output.put_line(‘関東地方です’);
end if;
end;
/