MySQL MATCH AGAINST functionality....

Posted by Webnet on Stack Overflow See other posts from Stack Overflow or by Webnet
Published on 2010-06-01T20:26:29Z Indexed on 2010/06/01 20:33 UTC
Read the original article Hit count: 210

Filed under:
|

Currently I have the following query...

SELECT id, 
       LOWER(title) as title, 
       LOWER(sub_title) as sub_title
  FROM ebay_archive_listing
 WHERE MATCH(title, sub_title) AGAINST ("key" IN BOOLEAN MODE)

However it is not finding rows where the title contains the word "key". "key" is generated dynamically based on a set of keywords, so sometimes it contains + and - symbols.

© Stack Overflow or respective owner

Related posts about mysql

Related posts about match