Re: [HACKERS] Re: Question regarding new windowing functions in 8.4devel

Поиск
Список
Период
Сортировка
От Jaime Casanova
Тема Re: [HACKERS] Re: Question regarding new windowing functions in 8.4devel
Дата
Msg-id 3073cc9b0901160923v8f08c5eqcd4a2d4ac8ba6694@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Question regarding new windowing functions in 8.4devel  (David Fetter <david@fetter.org>)
Ответы Re: [HACKERS] Re: Question regarding new windowing functions in 8.4devel  (David Fetter <david@fetter.org>)
Список pgsql-general
On Fri, Jan 16, 2009 at 12:07 PM, David Fetter <david@fetter.org> wrote:
>>
>> Now i want only 3 records for every typ:
>>
>> test=# select typ, ts, rank() over (partition by typ order by ts desc )  from foo where rank <= 3;
>> ERROR:  column "rank" does not exist
>> LINE 1: ...rtition by typ order by ts desc )  from foo where rank <= 3;
>

maybe the rank should go in a having clause? i'm not familiar about
window functions yet... just guessing...

> I tried this:
>
> SELECT
>    typ,
>    ts,
>    rank() over w AS foo_rank
> FROM
>    foo
>        WINDOW  w AS (partition by typ order by ts desc)
> WHERE
>    foo_rank < 4;
>
> ERROR:  syntax error at or near "WHERE"
> LINE 8: WHERE
>        ^

the WINDOW specification goes after the WHERE clause not before



--
Atentamente,
Jaime Casanova
Soporte y capacitación de PostgreSQL
Asesoría y desarrollo de sistemas
Guayaquil - Ecuador
Cel. +59387171157

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

Предыдущее
От: David Fetter
Дата:
Сообщение: Re: Question regarding new windowing functions in 8.4devel
Следующее
От: David Fetter
Дата:
Сообщение: Re: [HACKERS] Re: Question regarding new windowing functions in 8.4devel