Hello I have a database entry listingName = Serious Coffee
When I search for this I get a result:
SELECT * FROM listings WHERE MATCH (listingName) AGAINST ('(Serious Coffee)' IN BOOLEAN MODE)
When I search for this I don't get a result:
SELECT * FROM listings WHERE MATCH (listingName) AGAINST ('(Serious)' IN BOOLEAN MODE)
What am I doing wrong? I though Full text could match any part of a sentence?