MySQL Forums
Forum List  »  Optimizer & Parser

Re: left outer join performance
Posted by: Rick James
Date: November 29, 2011 09:27PM

Learn about "compound indexes".

on a.Memberid_t = b.Memberid_DC
and a.YEAR_t = b.YEAR_dc;
begs for
INDEX(Memberid_t, YEAR_t) -- on table a
and/or
INDEX(Memberid_DC, YEAR_DC) -- on table b
In this case, the order of the fields in the compound index is not important.

Options: ReplyQuote


Subject
Views
Written By
Posted
3844
November 28, 2011 09:58PM
1422
November 28, 2011 11:10PM
Re: left outer join performance
1308
November 29, 2011 09:27PM


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.