Re: function with multiple return values

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: function with multiple return values
Дата
Msg-id 27547.1289145196@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: function with multiple return values  (Andreas Kretschmer <akretschmer@spamfence.net>)
Ответы Re: function with multiple return values  (Andreas Kretschmer <akretschmer@spamfence.net>)
Re: function with multiple return values  (Scott Serr <serrs@theserrs.net>)
Список pgsql-general
Andreas Kretschmer <akretschmer@spamfence.net> writes:
> Scott Serr <serrs@theserrs.net> wrote:
>> Ideas on how to uniquely name the first and second set of "perc,
>> entry_date"?

> You can use alias-names for the 2 queries, like:

> test=*# select foobar.a as x, foobar.b as y, bar.* from (select * from foo()) foobar, (select * from foo()) bar ;

You don't really need the sub-selects: you can put aliases on functions
in FROM.

    select * from foo(...) as f1(a,b), foo(...) as f2(x,y);

            regards, tom lane

В списке pgsql-general по дате отправления:

Предыдущее
От: Scott Ribe
Дата:
Сообщение: Re: It is possible to update more than 1 table in the same update statement?
Следующее
От: Andreas Kretschmer
Дата:
Сообщение: Re: function with multiple return values