Re: function error

Поиск
Список
Период
Сортировка
От PG Explorer
Тема Re: function error
Дата
Msg-id 002601c1d5ca$e2ed5800$c80ba8c0@sabex.com
обсуждение исходный текст
Ответ на function error  ("Travis Hoyt" <thoyt@npc.net>)
Ответы Re: function error  ("Travis Hoyt" <thoyt@npc.net>)
Список pgsql-sql
Needs a FOR!!

system          ALIAS FOR $1;

Strange that the sample is wrong?


http://www.pgexplorer.com


----- Original Message -----
From: "Travis Hoyt" <thoyt@npc.net>
To: <pgsql-sql@postgresql.org>
Sent: Wednesday, March 27, 2002 9:59 PM
Subject: [SQL] function error


> CREATE FUNCTION biwklyavg(text, text, text) RETURNS numeric AS '
>         DECLARE
>                 system          ALIAS $1;
>                 startdate       ALIAS $2;
>                 enddate         ALIAS $3;
>                 result          numeric;
>
>         BEGIN
>                 result := (select (avg(usr) + avg(sys)) from sardata where
> systemid = system
>                         and time between startdate and enddate;
>         END;
> ' LANGUAGE 'sql';
>
> Hello,
>
> The fuction listed above gives the following error:
>
> ERROR:  parser: parse error at or near "alias"
>
> I'm running v7.2.  Any ideas?  I pulled this directly from the examples in
> the PostgreSQL Developer's Handbook.
>
> Thanks,
>
> Travis
>



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

Предыдущее
От: "Travis Hoyt"
Дата:
Сообщение: function error
Следующее
От: "Travis Hoyt"
Дата:
Сообщение: Re: function error