views:

18

answers:

0

I'm doing the following query

SELECT *  
  FROM downloads 
 WHERE MATCH (title, artist) AGAINST ('+like ' IN BOOLEAN MODE)

...and it's not returning any results when it should be.

It's not the code or anything, since it works fine for any other search terms. Could it be the fact that like is commonly used in MySQL queries so it's ignoring it or something?