From: | Nilesh Govindarajan <lists(at)itech7(dot)com> |
---|---|
To: | Dean Rasheed <dean(dot)a(dot)rasheed(at)googlemail(dot)com> |
Cc: | pgsql-general General <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Help me with this multi-table query |
Date: | 2010-03-24 05:17:53 |
Message-ID: | 4BA9A081.1090804@itech7.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On 03/24/2010 12:45 AM, Dean Rasheed wrote:
> On 23 March 2010 11:07, Nilesh Govindarajan<lists(at)itech7(dot)com> wrote:
>> Hi,
>>
>> I want to find out the userid, nodecount and comment count of the userid.
>>
>> I'm going wrong somewhere.
>>
>> Check my SQL Code-
>>
>> select u.uid, count(n.nid) nc , count(c.cid) cc from users u left join node
>> n on ( n.uid = u.uid ) left join comments c on ( c.uid = u.uid ) group by
>> u.uid having u.uid<> 0 order by u.uid;
>>
>
> I think you want select u.uid, count(distinct n.nid) nc ,
> count(distinct c.cid) cc from ...
> otherwise you're counting each node/comment multiple times as the rows in the
> join multiply up (note 85 x 174 = 14790).
>
> For big tables, this could start to become inefficient, and you might
> be better off
> doing your queries 1 and 2 above as sub-queries and joining them in an
> outer query.
>
> Regards,
> Dean
Thanks a lot !! It worked.
How to do it using subqueries ?
--
Nilesh Govindarajan
Site & Server Administrator
www.itech7.com
From | Date | Subject | |
---|---|---|---|
Next Message | Dean Rasheed | 2010-03-24 07:44:48 | Re: Help me with this multi-table query |
Previous Message | Craig Ringer | 2010-03-24 04:30:31 | Re: Avoiding deadlocks on mass delete / update |