Re: using a generated series in function - Mailing list pgsql-sql

From David Johnston
Subject Re: using a generated series in function
Date
Msg-id B8982C63-B4D6-4088-BDA1-200D957B51B2@yahoo.com
Whole thread Raw
In response to using a generated series in function  (John Fabiani <johnf@jfcomputer.com>)
List pgsql-sql
On Dec 15, 2011, at 23:16, John Fabiani <johnf@jfcomputer.com> wrote:

> Hi,
>
> I am attempting (without success) use the generated series of dates that come
> from:
> select (cast(date_trunc('week', '2011-11-20'::date ) as date) + (i+6)) as
> week_date from generate_series(0,84,7) i
>
> in a function.
> select function_name(integer, date);  -- function returns a numeric
>
> This does NOT work:
> select (function_name(303, week_date::date)) as week_date where week_date in
> (select (cast(date_trunc('week', '2011-11-20'::date ) as date) + (i+6)) as
> week_date from generate_series(0,84,7) i )
>
> The error is:
> ERROR:  column "week_date" does not exist
> LINE 1: select (xchromasun._chromasun_getqtyordered(303, week_date::...
>
> I hope I can do this?  What am I doing wrong?
> Johnf
>
>

"select ... as week_date where week_date in ..."

You are missing a FROM clause for the main select; the only FROM you have is part of the IN target subquery.

David J.



pgsql-sql by date:

Previous
From: John Fabiani
Date:
Subject: using a generated series in function
Next
From: Misa Simic
Date:
Subject: Re: using a generated series in function