PostgreSQL 10では、 array_aggを使用できます :
declare
v_ids int[];
begin
select array_agg(id) INTO v_ids
from mytable1
where host = p_host;
--use v_ids...
end;
配列があり、 unnestを使用して配列から選択するために使用できます :
select * from unnest(v_ids) where ...