I have implemented full text search on two fields (title, description)
now if I search for chelsea in it gives me right result but when i search for Manchester city then it give all the result where title/description contains manchester or city
ex Manchester city gives me result manchester united hull city conventry city etc
below is my query
SELECT DISTINCT * FROM news WHERE MATCH (title, description) AGAINST (:search)