From: | "A(dot) Kretschmer" <andreas(dot)kretschmer(at)schollglas(dot)com> |
---|---|
To: | pgsql-sql(at)postgresql(dot)org |
Subject: | Re: union with count? |
Date: | 2007-03-28 14:24:44 |
Message-ID: | 20070328142444.GA20168@a-kretschmer.de |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
am Wed, dem 28.03.2007, um 11:04:29 -0300 mailte Gerardo Herzig folgendes:
> Hi dudes, i have the following question
> i have 2 tables with the same format, and i want to know if is there a
> possibility of using some sort of count(*) for achieving this result:
> select a from table1 where (condition) union select a from table2 where
> (condition), count(a) group by a
>
> The idea is having how many times (condition) is true for both tables.
>
> Im not shure im explaining myself clearly, my english is not the best
> (as you can see ;)
You can use a subselect, a simple example:
test=# select *, count(1) from (select 1 union select 2 union select 3) foo group by 1;
?column? | count
----------+-------
1 | 1
2 | 1
3 | 1
(3 rows)
Andreas
--
Andreas Kretschmer
Kontakt: Heynitz: 035242/47150, D1: 0160/7141639 (mehr: -> Header)
GnuPG-ID: 0x3FFF606C, privat 0x7F4584DA http://wwwkeys.de.pgp.net
From | Date | Subject | |
---|---|---|---|
Next Message | Richard Broersma Jr | 2007-03-28 14:27:29 | Re: union with count? |
Previous Message | Richard Broersma Jr | 2007-03-28 14:10:26 | Re: Regular Expressions [progress] |