Search Postgresql Archives

Re: Can't see what's wrong with this function?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



=?ISO-8859-1?Q?Bj=F8rn?= T Johansen <btj@xxxxxxxxxx> writes:
> I am trying to create a function but I don't get further than this and something is already wrong...
> The function so far look like this..:

> CREATE OR REPLACE FUNCTION getNettoHastighet (INTEGER) RETURNS INTEGER AS '
> DECLARE
>     total bigint;
> BEGIN
>     select into tmprec (extract(epoch from sum(Til - Fra)) * 1000.0) as total from Log_stop where OrdreID = ordreid_val and StopType = 1;

Don't use plpgsql variable names that conflict with names you use in
your queries.  In this case it's trying to replace "AS total" with
a reference to that plpgsql variable named total.

			regards, tom lane


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux