Re: variables in ad hoc queries

Поиск
Список
Период
Сортировка
От Merlin Moncure
Тема Re: variables in ad hoc queries
Дата
Msg-id b42b73150909290530u678e3649ueb62d803514f59f@mail.gmail.com
обсуждение исходный текст
Ответ на variables in ad hoc queries  (Iain Barnett <iainspeed@gmail.com>)
Список pgsql-general
On Tue, Sep 29, 2009 at 8:06 AM, Iain Barnett <iainspeed@gmail.com> wrote:
> If I have a function that returns an integer, how can I use the following
> code outside of a function block?
>
> declare
> _myint int;
>
> begin
> _myint := myfunction( );
> end;

you can...all postgresql functions can be used in queries:

select * from myfunction();

What you are probably bumping into is that previously to 8.4, plpgsql
functions could not be called the short way:
select myfunction();

If this is your problem, the workarounds are to adjust the query, wrap
it with an sql function, or upgrade to 8.4.

merlin

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

Предыдущее
От: Grzegorz Jaśkiewicz
Дата:
Сообщение: Re: Performance evaluation of PostgreSQL's historic releases
Следующее
От: Raymond O'Donnell
Дата:
Сообщение: Re: variables in ad hoc queries