I am wondering if MySQL treats the dash in "add-ons" for example as a "not" operator since the query
SQL
SELECT * FROM mws_search WHERE MATCH (keywords) AGAINST ('add-ons' IN BOOLEAN MODE);
doesn't return any results although the field contains the word "add-on".If yes, is it possible to tell MySQL to treat the dash as string?
Regards,
Sebastian
Edit: The table is indexed since the same query for "addon" works when the table contains "addon".