From: | "Oliveiros C," <oliveiros(dot)cristina(at)marktest(dot)pt> |
---|---|
To: | "Another Trad" <anothertrad(at)gmail(dot)com>, <pgsql-sql(at)postgresql(dot)org> |
Subject: | Re: need nelp with aggregate functions |
Date: | 2009-11-18 17:16:52 |
Message-ID: | 971C9BA25C4948E08D128793220A7DEE@marktestcr.marktest.pt |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
Try substituting the SELECT count(c) as qtd_client,count(cm) as qtd_computers
by
SELECT count( DISTINCT c.cliente_id) as qtd_client,count(/* put here the primary key of the computer table */ ) as qtd_computers
Then tell me if it output what you want
Best,
Oliveiros
----- Original Message -----
From: Another Trad
To: pgsql-sql(at)postgresql(dot)org
Sent: Wednesday, November 18, 2009 4:55 PM
Subject: [SQL] need nelp with aggregate functions
The DB structure is in attachment.
I with the number of clients and the number of computers that have processors with "manufacturer" = "INTEL" and "speed" = "2GB"
I am trying:
select count(c) as qtd_client, count(cm) as qtd_computers
from cliente c inner JOIN computer cm on (c.cliente_id = cm.cliente_id) inner join processor p on (cm.processor_id = p.processor_id)inner join speed s on (s.speed_id = p.speed_id)INNER JOIN manufacturer m on (p.manufacturer_id=m.manufacturer_id)
where m.manufacturer = 'INTEL'and s.speed = '2GB'but is not working
anyone can help me?
------------------------------------------------------------------------------
--
Sent via pgsql-sql mailing list (pgsql-sql(at)postgresql(dot)org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-sql
From | Date | Subject | |
---|---|---|---|
Next Message | Another Trad | 2009-11-18 17:37:17 | Re: need nelp with aggregate functions |
Previous Message | Scott Marlowe | 2009-11-18 17:07:59 | Re: need nelp with aggregate functions |