Advice on how to build a query with partial sums

Поиск
Список
Период
Сортировка
От JORGE MALDONADO
Тема Advice on how to build a query with partial sums
Дата
Msg-id CAAY=A78MbAskov=93Jec2=QGjsGvowdbHk0ywdjY+HVwRkT4iA@mail.gmail.com
обсуждение исходный текст
Ответы Re: Advice on how to build a query with partial sums  (David Johnston <polobo@yahoo.com>)
Список pgsql-novice
I need to build a query for the sample data below:

-----------------------------------------------------------------------    --------
fte_clave    fte_padre    fte_porc    fte_porc_aux         total
-----------------------------------------------------------------------    --------
1                  1                25              25                   50
2                  1                25               0                    50
3                  1                50              25                   50

4                  2                20               0                    40
5                  2                20              25                   40
6                  2                60              15                   40

7                  3                15              35                   60
8                  3                15               0                    60
9                  3                20               0                    60
10                3                50              25                   60
-----------------------------------------------------------------------    -------

The table contains only the first 4 fields and I want to build a query that gets such fields plus a fifth one (total) with the sum of "fte_porc_aux" for each "fte_padre".

I will very much appreciate your comments.

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

Предыдущее
От: Jack Kaufman
Дата:
Сообщение: Re: Sending email from PL/pgSQL
Следующее
От: David Johnston
Дата:
Сообщение: Re: Advice on how to build a query with partial sums