Re: function error

From: "Travis Hoyt" <thoyt(at)npc(dot)net>
To: "PG Explorer" <pgmail(at)pgexplorer(dot)com>, <pgsql-sql(at)postgresql(dot)org>
Subject: Re: function error
Date: 2002-03-27 20:10:06
Message-ID: DBEMKMGOMJAGKAKEPPEGGEAODHAA.thoyt@npc.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Doh! Sorry my code DOES have the FOR in it as does the example in the
book. Neither works though.

My apologies this was my second attempt w/o the FOR.

Here's what I really have:

CREATE FUNCTION biwklyavg(text, text, text) RETURNS numeric AS '
DECLARE
system ALIAS FOR $1;
startdate ALIAS FOR $2;
enddate ALIAS FOR $3;
result numeric;

BEGIN
result := (select (avg(usr) + avg(sys)) from sardata
where
systemid = system and time between startdate and enddate;
END;
' LANGUAGE 'sql';

-----Original Message-----
From: PG Explorer [mailto:pgmail(at)pgexplorer(dot)com]
Sent: Wednesday, March 27, 2002 3:06 PM
To: Travis Hoyt; pgsql-sql(at)postgresql(dot)org
Subject: Re: [SQL] function error

Needs a FOR!!

system ALIAS FOR $1;

Strange that the sample is wrong?

http://www.pgexplorer.com

----- Original Message -----
From: "Travis Hoyt" <thoyt(at)npc(dot)net>
To: <pgsql-sql(at)postgresql(dot)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
>

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Jan Wieck 2002-03-27 20:25:59 Re: function error
Previous Message PG Explorer 2002-03-27 20:06:29 Re: function error