declare city varchar2(20):='Харьков'; resp varchar2(20); Begin resp:=case city when 'Львов' then 'Иванов' when 'Харьков' then 'Сидоров' when 'Киев' then 'Петров' end; end;