Re: Selecting count of details along with details columns

From: Richard Huxton <dev(at)archonet(dot)com>
To: Axel Rau <Axel(dot)Rau(at)Chaos1(dot)DE>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Selecting count of details along with details columns
Date: 2005-09-29 10:03:51
Message-ID: 433BBC07.5040208@archonet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Axel Rau wrote:
>
> Am 29.09.2005 um 10:30 schrieb Richard Huxton:
>
>> Axel Rau wrote:
>>
>>> SELECT T2.T2_name, COUNT(T1.id) AS xx
>>> FROM T2, T1
>>> WHERE T2.id = T1.fk_t2
>>> GROUP BY T2.T2_name
>>> HAVING COUNT(T1.id) > 1
>>> ORDER BY xx DESC;
>>> t2_name | xx
>>> ---------+----
>>> T2-N2 | 3
>>> T2-N3 | 2
>>> (2 rows)
>>> Adding column t1_name to the result set breaks COUNT(T1.id):
>>> SELECT T2.T2_name, T1.T1_name, COUNT(T1.id) AS xx
>>> FROM T2, T1
>>> WHERE T2.id = T1.fk_t2
>>> GROUP BY T2.T2_name, T1.T1_name
>>> HAVING COUNT(T1.id) > 1
>>> ORDER BY xx DESC;
>>> t2_name | t1_name | xx
>>> ---------+---------+----
>>> (0 rows)
>>> How can I do this with pg ?
>>
>>
>> Do what? You don't say what results you are expecting.
>>
>> Do you want:
>> 1. ALL values of T1_name (in which case what count do you want)?
>> 2. The FIRST value of T1_name (in which case what do you mean by first)?
>
>
> #1.:
>
> t2_name | t1_name | count
> ---------+---------+-------
> T2-N2 | T1-CCC | 3
> T2-N3 | T1-FFF | 2
> T2-N2 | T1-BBB | 3
> T2-N2 | T1-DDD | 3
> T2-N3 | T1-EEE | 2

Ah - this is two questions:
1. What are the unique (t2_name,t1_name) pairings?
2. How many different (t1.id) values are there for each t2.

So - something like:

SELECT names.T2_name, names.T1_name, counts.num_t2
FROM
(
SELECT DISTINCT T2.T2_name, T1.T1_name
FROM T2,T1
WHERE T2.id = T1.fk_t2
) AS names,
(
SELECT T2.T2_name, COUNT(T1.id) AS num_t2
FROM T2, T1
WHERE T2.id = T1.fk_t2
GROUP BY T2.T2_name
HAVING COUNT(T1.id) > 1
) AS counts
WHERE
names.T2_name = counts.T2_name
;

You could write the "names" sub-query with a GROUP BY if you wanted of
course.
--
Richard Huxton
Archonet Ltd

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Mario Splivalo 2005-09-29 18:16:44 EXECUTE with SELECT INTO variable, or alternatives
Previous Message Axel Rau 2005-09-29 09:19:39 Re: Selecting count of details along with details columns