Re: (P)SQL for a sum with constraints

Поиск
Список
Период
Сортировка
От Shug Boabby
Тема Re: (P)SQL for a sum with constraints
Дата
Msg-id 9508491d0904170246p51f2f95csd02a3d96119fc665@mail.gmail.com
обсуждение исходный текст
Ответ на Re: (P)SQL for a sum with constraints  (Michal Politowski <mpol+pg@meep.pl>)
Список pgsql-general
Michal... I must apologise, your suggestion worked a treat!!!

I never realised it was possible to do a join on a table to itself before!

2009/4/15 Michal Politowski <mpol+pg@meep.pl>:
> On Wed, 15 Apr 2009 15:32:42 +0100, Shug Boabby wrote:
>> I simplified my problem a little too much and now I'm stuck trying to
>> use cumulative_sum(). My schema is not only A, B but also has a C
>>
>> A B C
>> 1 0 1
>> 2 1 1
>> 3 0 1
>> 4 2 1
>> 5 1 1
>> 1 0 2
>> 2 1 2
>> 3 0 2
>> 4 2 2
>> 5 1 2
>>
>> and I want to be able to do the cumulative sum only when C is the same. E.g.
>>
>> A funkySumB C
>> 1 0 1
>> 2 1 1
>> 3 1 1
>> 4 3 1
>> 5 4 1
>> 1 0 2
>> 2 1 2
>> 3 1 2
>> 4 3 2
>> 5 4 2
>
> If I understand the problem correctly, why not just something like this?:
>
> SELECT t1.a, sum(t2.b), t1.c FROM abc t1 JOIN abc t2 ON t2.a <= t1.a AND
> t2.c=t1.c GROUP BY t1.a, t1.c;
>
> --
> Michał Politowski
> Talking has been known to lead to communication if practiced carelessly.
>
> --
> Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-general
>

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

Предыдущее
От: Chris.Ellis@shropshire.gov.uk
Дата:
Сообщение: Re: Looking for advice on database encryption
Следующее
От: Bill Moran
Дата:
Сообщение: Re: Looking for advice on database encryption