Buenos dias, como hago para devolver varios registros de en una funcion,
cree la sgt funcion, pero me sale error:
create or replace function todos_los_registros() returns setof record as'
declare
registro record;
begin
for registro in EXECUTE select * from cliente loop
return next registro;
end loop;
return;
end
'
language 'plpgsql';
y cuando hago un select: select todos_los_registros()
me sale el sgt mensaje
ERROR: fmgr_info: function 0: cache lookup failed
NOTICE: plpgsql: ERROR during compile of todos_los_registros near line 0
USO PostgreSQL 7.2.2
Gracias por su ayuda :D
--
-----------------
[) /-\ |\|