Counting Distinct Records

Поиск
Список
Период
Сортировка
От Thomas F.O'Connell
Тема Counting Distinct Records
Дата
Msg-id 1B2F7B00-3808-11D9-95C2-000D93AE0944@sitening.com
обсуждение исходный текст
Ответы Re: Counting Distinct Records  (Stephan Szabo <sszabo@megazone.bigpanda.com>)
Список pgsql-sql
I am wondering whether the following two forms of SELECT statements are 
logically equivalent:

SELECT COUNT( DISTINCT table.column ) ...

and

SELECT DISTINCT COUNT( * ) ...

If they are the same, then why is the latter query much slower in 
postgres when applied to the same FROM and WHERE clauses?

Furthermore, is there a better way of performing this sort of operation 
in postgres (or just in SQL in general)?

Thanks!

-tfo

--
Thomas F. O'Connell
Co-Founder, Information Architect
Sitening, LLC
http://www.sitening.com/
110 30th Avenue North, Suite 6
Nashville, TN 37203-6320
615-260-0005



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

Предыдущее
От: carex@skynet.be (carex)
Дата:
Сообщение: Re: select using regexp does not use indexscan
Следующее
От: Stephan Szabo
Дата:
Сообщение: Re: Counting Distinct Records