Re: [SQL] Counting the number of distinct rows returned

Поиск
Список
Период
Сортировка
От Sejin Oh
Тема Re: [SQL] Counting the number of distinct rows returned
Дата
Msg-id 002501beea4a$b078d160$0301a8c0@turbo
обсуждение исходный текст
Ответы Re: [SQL] Counting the number of distinct rows returned  (Herouth Maoz <herouth@oumail.openu.ac.il>)
Список pgsql-sql
yeah... GROUP BY should do..

try this:

SELECT COUNT(*) FROM sales_by_region GROUP BY user_id;

Regards,

-----Original Message-----
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Drew Whittle <drew@albatross.co.nz>
Cc: pgsql-sql@postgreSQL.org <pgsql-sql@postgreSQL.org>
Date: Thursday, August 19, 1999 9:35 AM
Subject: Re: [SQL] Counting the number of distinct rows returned


>Drew Whittle <drew@albatross.co.nz> writes:
>> How can I return the number of records (ie a count(user_id)) when using a
>> statement like this:
>
>> select distinct user_id from sales_by_region;
>
>count() with a GROUP BY will do what you want, I think --- see other
>thread with Doug Younger for an example.
>
>> I have tried things like:
>> select count(distinct user_id) from sales_by_region (parse error)
>
>Unfortunately we don't handle count(distinct ...) --- we should, since
>it's in SQL92.
>
> regards, tom lane
>
>************
>Check out "PostgreSQL Wearables" @ http://www.pgsql.com



В списке pgsql-sql по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: [SQL] Counting the number of distinct rows returned
Следующее
От: KOUL Christian
Дата:
Сообщение: (pas d'objet)