MySQL Forums
Forum List  »  Optimizer & Parser

Re: Why is FULLTEXT index not used with a LEFT JOIN?
Posted by: Tad Woods
Date: June 11, 2006 03:39PM

It seems that if I move the MATCH criteria from WHERE to the ON clause then it will use the FULLTEXT index ????

EXPLAIN SELECT item, description
FROM purchases as p
LEFT JOIN vendors as v ON p.vendor_id = v.id AND MATCH (v.company_name,v.first_name,v.last_name) AGAINST('lowes')

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Why is FULLTEXT index not used with a LEFT JOIN?
2169
June 11, 2006 03:39PM


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.