From: | David Johnston <polobo(at)yahoo(dot)com> |
---|---|
To: | pgsql-performance(at)postgresql(dot)org |
Subject: | Re: Problem with slow query with WHERE conditions with OR clause on primary keys |
Date: | 2013-12-18 20:12:29 |
Message-ID: | 1387397549054-5783942.post@n5.nabble.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-performance |
kolszew73(at)gmail(dot)com wrote
> Thanx for your answer
>
> My example is trivial because i want to show strange (for me) postgres
> behavior with dealing with primary keys (extreme example), in real
> situation user put search condition e.g. "Panas" and this generates query
> ...
> where gd.other_code like 'Panas%' OR g.code like 'Panas%'
> ..
>
> both columns has very good indexes and selectivity for "like 'Panas%'" ...
>
> I have experience from Oracle with this type of queries, and Oracle have
> no problem with it,
> executes select on index on other_code from gd and join g
> in next step executes select on index on code from g and join gd
> and this two results are connected in last step (like union)
> very fast on minimal cost
>
> and in my opinion read whole huge tables only for 10 rows in result where
> conditions are very good ... is strange
I suppose the equivalent query that you'd want would be:
SELECT ... FROM gd JOIN gd_data USING (id_gd)
WHERE id_gd IN (
SELECT id_gd FROM gd WHERE ...
UNION ALL -distinct not required in this situation
SELECT id_gd FROM gd_data WHERE ...
) --ignoring NULL implications
It does make sense conceptually...
David J.
--
View this message in context: http://postgresql.1045698.n5.nabble.com/Problem-with-slow-query-with-WHERE-conditions-with-OR-clause-on-primary-keys-tp5782803p5783942.html
Sent from the PostgreSQL - performance mailing list archive at Nabble.com.
From | Date | Subject | |
---|---|---|---|
Next Message | Andreas Karlsson | 2013-12-19 01:32:38 | Re: Problem with slow query with WHERE conditions with OR clause on primary keys |
Previous Message | prashant Pandey | 2013-12-18 20:12:20 | Regarding Hardware Tuning |