Subject | Re: [firebird-support] Optimizer request |
---|---|
Author | Ann Harrison |
Post date | 2016-09-09T20:51:05Z |
On Fri, Sep 9, 2016 at 8:30 AM, 'Djordje Radovanovic' softsistem@... [firebird-support] <firebird-support@yahoogroups.com> wrote:
I tried query with subquery in where clause and found big issue for this type of subquery.select * from orders where orders.partid in (select partners.partid from partners where partners.country = ‘Spain’)Perfomance Analysis returns me thispartners 687660 non index readsorders 28657 index readsIf you analyze this result you’ll find that there is 687659 unnecessary non index reads. If developer of optimizer accept that all queries on the left side of where clause has priority (and there is no way to be opposite) than we have big improvement in optimization.Is there an index on partners.country? What plans are generated for each query?If I were writing this query, I'd writeselect o.*from orders oinner join partners pwhere p.partid = o.opartidand p.country = 'Spain';All that silliness about "select from (select from )" probably doesn't save anything inthis case - it does when the inner select is complicated, but not here. Firebird won'tcarry around unneeded fields from the partners table.What is the distribution of partners.country?Good luck,Ann__,_._,_