MySQL Forums
Forum List  »  Performance

Re: which is best for JOIN approach
Posted by: Øystein Grøvlen
Date: November 25, 2015 02:14AM

Hi,

I assume that you have indexes on all your id columns.

For the second alternative, the join order is given: a -> b -> ec

For the first alternative, both the join order above and a -> ec -> b is possible.

Whether the processing ec before b is beneficial depends on the size of the tables, and the number of matching ids in the two tables.

In other words, I would choose the first alternative because it gives the Query Optimizer more alternatives to evaluate.

Øystein Grøvlen,
Senior Principal Software Engineer,
MySQL Group, Oracle,
Trondheim, Norway

Options: ReplyQuote


Subject
Views
Written By
Posted
1636
November 24, 2015 09:39AM
Re: which is best for JOIN approach
994
November 25, 2015 02:14AM
1020
November 25, 2015 02:42AM
1036
November 29, 2015 11:53AM
931
February 19, 2016 05:28AM
884
February 21, 2016 04:56PM
956
February 19, 2016 05:31AM
835
February 21, 2016 01:40PM
885
February 21, 2016 01:43PM
911
February 25, 2016 05:50AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.