On Sep 29, 11:25 pm, [EMAIL PROTECTED] ("Scott Marlowe") wrote: > > However, this is starting to become too slow (as there are about 10 of > > these queries), and therefore I need to write an aggregate function > > which lets me do: > > >>SELECT count_unique(make), count_unique(color) from table WHERE >criteria<; > > > After reading about aggregate functions, this should be possible, as > > long as I can use a dictionary/hashmap type for the state<STYPE> > > argument. > > This might be a nice fit for materialized views. While they're not > built in, PostgreSQL's extensibility allows you to build them prettily > easily. > > http://jonathangardner.net/tech/w/PostgreSQL/Materialized_Views
Materialized views won't work as the criteria used to narrow the search is very arbritrary and rarely repeated, and as the count's depend on the current result set, they would offer a miniscule increase in speed, only as the row width would be a little smaller. -- Sent via pgsql-general mailing list (pgsql-general@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-general