count(*), EXISTS, indexes

From: Itai Zukerman <zukerman(at)math-hat(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: count(*), EXISTS, indexes
Date: 2003-04-11 20:39:49
Message-ID: 874r54sr8q.fsf@matt.w80.math-hat.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Define:

CREATE TABLE A (x int PRIMARY KEY, real v);
CREATE TABLE B (x int);

I'd like to calculate:

SELECT sum(v) FROM A WHERE EXISTS (SELECT 1 FROM B WHERE A.x=B.x);

...but then it won't use the primary key index on A.x.

It *will* use the index with:

SELECT sum(A.v) FROM A,B WHERE A.x=B.x;

...but that's not the same thing. This is soooo close:

SELECT count(DISTINCT A.x) FROM A,B WHERE A.x=B.x;

Am I going to have to write a plpgsql function for this?

PS. B is relatively small, a few thousand rows, while A has well over
500,000 rows. The DISTINCT A.x should be about 10,000-50,000.

--
Itai Zukerman <http://www.math-hat.com/~zukerman/>

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Josh Berkus 2003-04-11 20:53:50 Re: count(*), EXISTS, indexes
Previous Message 2000info 2003-04-11 04:16:51 unsubscribe