unsubscribe
---(end of broadcast)---
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to [EMAIL PROTECTED] so that your
message can get through to the mailing list cleanly
unsubscribe
---(end of broadcast)---
TIP 3: Have you checked our extensive FAQ?
http://www.postgresql.org/docs/faq
Hello,
Here is a simple function I created for a test.
create function ttt() returns setof record as '
declare
r record;
begin
for r in select * from utilisateurs.menus loop
return next r;
end loop;
return;
end;
' language 'plpgsql';
When I try to use it, it returns to me :
select ttt();
se