Re: sum an alias

Поиск
Список
Период
Сортировка
От A. Kretschmer
Тема Re: sum an alias
Дата
Msg-id 20100604055434.GA19411@a-kretschmer.de
обсуждение исходный текст
Ответ на sum an alias  (Wes James <comptekki@gmail.com>)
Ответы Re: sum an alias
Список pgsql-sql
In response to Wes James :
> In the statement:
> 
> select
>     MAX(page_count_count) - MIN(page_count_count) as day_tot,
>     MAX(page_count_count) as day_max, sum(MAX(page_count_count) -
> MIN(page_count_count)) as tot,
>     page_count_pdate
> from page_count
> group by page_count_pdate order by page_count_pdate
> 
> Is there a way to do sum(day_tot) also in the same statement?

Is this the correct table-definition?

test=# \d page_count      Table "public.page_count"     Column      |  Type   | Modifiers
------------------+---------+-----------page_count_pdate | date    |page_count_count | integer |


If yes, your SQL is wrong:

test=# select   MAX(page_count_count) - MIN(page_count_count) as day_tot,   MAX(page_count_count) as day_max,
sum(MAX(page_count_count)-
 
MIN(page_count_count)) as tot,   page_count_pdate
from page_count
group by page_count_pdate order by page_count_pdate;
ERROR:  aggregate function calls cannot be nested
LINE 3:     MAX(page_count_count) as day_max, sum(MAX(page_count_cou...


Can you provide the correct table definition?

Regards, Andreas
-- 
Andreas Kretschmer
Kontakt:  Heynitz: 035242/47150,   D1: 0160/7141639 (mehr: -> Header)
GnuPG: 0x31720C99, 1006 CCB4 A326 1D42 6431  2EB0 389D 1DC2 3172 0C99


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

Предыдущее
От: Wes James
Дата:
Сообщение: sum an alias
Следующее
От: Jasen Betts
Дата:
Сообщение: Re: how to construct sql