Re: Problems with Set Returning Functions (SRFs)

Поиск
Список
Период
Сортировка
"Otto Blomqvist" <o.blomqvist@secomintl.com> writes:
> secom=# select f1, f2, f3 from testpassbyval(1, (Select number1 from test));
> ERROR:  more than one row returned by a subquery used as an expression

In 8.0 I think it'd work to do

select (x).f1, (x).f2, (x).f3 from
(select testpassbyval(1, number1) as x from test) ss;

            regards, tom lane

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

Предыдущее
От: Mage
Дата:
Сообщение: Re: lower function
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Big trouble with memory !!