From: | Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com> |
---|---|
To: | Mike Christensen <mike(at)kitchenpc(dot)com> |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: Can a function return more then one table? |
Date: | 2012-01-11 06:47:38 |
Message-ID: | CAFj8pRDHgkmSrhw9oMe+H9MWr1ELF+8kok=a4t-QQNO9d_wmzA@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Hello
2012/1/11 Mike Christensen <mike(at)kitchenpc(dot)com>:
> I would like to write a function that returns one row from one table,
> and about 10 rows or so from another table..
>
> Is there a clean way to do this, or am I better off making two separate queries?
>
> I'm thinking maybe I can use OUT parameters for the first table, and
> the return value for the second table? However, I have no idea what
> the syntax would be like.
>
what is possible
* return setof refcursors
* use arrays instead tables and returns arrays (for tables less 10000 rows)
Regards
Pavel Stehule
> Mike
>
> --
> Sent via pgsql-general mailing list (pgsql-general(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-general
From | Date | Subject | |
---|---|---|---|
Next Message | Mike Christensen | 2012-01-11 06:50:31 | Re: Can a function return more then one table? |
Previous Message | Mike Christensen | 2012-01-11 06:42:22 | Can a function return more then one table? |