I'm having an issue searching the data in my database. I can search on individual keywords just fine, and I can search an "exact string" using quotes, but it doesn't work if I combine a keyword and an exact string. If i search for something like "apartment complex" burglar, I would expect it to narrow the results to only those with both "apartment complex" and "burglar" in them (like in a Google search), yet it gives me records with "apartment complex" OR "burglar" and expands the results.
The query it runs looks like this...
SELECT * FROM risks WHERE MATCH (description,taxstate,county,city) AGAINST ('"apartment complex" burglar')
What am I doing wrong?
Thank you!
Jim