Re: GROUP BY on a column which might exist in one of two tables - Mailing list pgsql-sql

From Greg Sabino Mullane
Subject Re: GROUP BY on a column which might exist in one of two tables
Date
Msg-id b65a360be1225154e022b431725b9351@biglumber.com
Whole thread Raw
In response to GROUP BY on a column which might exist in one of two tables  (Mark Stosberg <mark@summersault.com>)
Responses Re: GROUP BY on a column which might exist in one of two tables  (Mark Stosberg <mark@summersault.com>)
List pgsql-sql
-----BEGIN PGP SIGNED MESSAGE-----
Hash: RIPEMD160


> Where the totals are "counts" of the the rows in the hits and views
> tables. There should be no rows for partners without hits or views.

How about something like this?:

SELECT partner_id, COUNT(view_id) AS total_views, COUNT(hit_id) AS total_hits
FROM (SELECT partner_id, hit_id, NULL AS view_id FROM hitsUNION ALLSELECT partner_id, NULL, view_id FROM views
) AS foo
GROUP BY 1;



- --
Greg Sabino Mullane greg@turnstep.com
End Point Corporation
PGP Key: 0x14964AC8 200806251019
http://biglumber.com/x/web?pk=2529DF6AB8F79407E94445B4BC9B906714964AC8
-----BEGIN PGP SIGNATURE-----

iEYEAREDAAYFAkhiU+8ACgkQvJuQZxSWSsgNiACgmrUWfTv1ZSiiexOKja64p1F8
1hYAn3i+tYoEOIs2NIcSrExlvoyfJE+X
=ryrm
-----END PGP SIGNATURE-----




pgsql-sql by date:

Previous
From: Mark Stosberg
Date:
Subject: Re: GROUP BY on a column which might exist in one of two tables
Next
From: Steve Crawford
Date:
Subject: Re: Sequential event query