Re: counting distinct values

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Joseph Shraibman <jks(at)selectacast(dot)net>
Cc: "pgsql-sql(at)postgresql(dot)org" <pgsql-sql(at)postgresql(dot)org>
Subject: Re: counting distinct values
Date: 2000-06-08 00:15:58
Message-ID: 200006080015.UAA04389@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

> Using the example from
> http://www.postgresql.org/docs/aw_pgsql_book/node59.html, what would I
> do if I wanted to know the number of different cities where I had a
> friend in each state? select count(city) group by state; would not work
> because if you had two friends in the same city it would be counted
> twice.
>

How about?

select city, state, count(*) group by state, city;

--
Bruce Momjian | http://www.op.net/~candle
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Bernie Huang 2000-06-08 00:21:52 Fetch an element in an array
Previous Message Joseph Shraibman 2000-06-07 23:52:16 counting distinct values