Re: Get different sums from the same table in one query

From: "Peter Childs" <peterachilds(at)gmail(dot)com>
To:
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Get different sums from the same table in one query
Date: 2007-10-08 11:32:55
Message-ID: a2de01dd0710080432g7700d76bkd963f29461807772@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On 08/10/2007, A. Kretschmer <andreas(dot)kretschmer(at)schollglas(dot)com> wrote:
>
> am Mon, dem 08.10.2007, um 12:49:04 +0200 mailte Dani Castaños folgendes:
> > Hi all!
> >
> > I want to put this three queries in only one... Take a look that the
> > only thing that changes is the message_type_id. Any suggestions??
>
> Yes, no problem, You can use UNION (ALL) for such.

Not sure thats what he wants at all. Anyway Union all is going to produce a
very slow way of doing this needing to go back to the data 3 times where as
this only goes once.

SELECT TO_CHAR( statistics_date, 'DD/MM/YYYY') AS date_in,
sum(case when message_type_id in (4,5) then total_num_messages else 0 end)
as fourorfive,
sum(case when message_type_id in (6) then total_num_messages else 0 end) as
six,
sum(case when message_type_id in (21) then total_num_messages else 0 end) as
twentyone
FROM statistics_daily
WHERE statistics_date = CURRENT_DATE
AND telecom_operator_id <> 0
AND telephone_number IN ( $numbers )
GROUP BY date_in

You may have to play to get exactly what you want but here worse case your
only doing one scan of the table not three... You may want to use views to
simplify things.

Peter Childs

Andreas
> --
> Andreas Kretschmer
> Kontakt: Heynitz: 035242/47150, D1: 0160/7141639 (mehr: -> Header)
> GnuPG-ID: 0x3FFF606C, privat 0x7F4584DA http://wwwkeys.de.pgp.net
>
> ---------------------------(end of broadcast)---------------------------
> TIP 7: You can help support the PostgreSQL project by donating at
>
> http://www.postgresql.org/about/donate
>

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Richard Huxton 2007-10-08 11:37:09 Re: Get different sums from the same table in one query
Previous Message A. Kretschmer 2007-10-08 10:54:22 Re: Get different sums from the same table in one query