I want to find text 'law'in the contents of MySQL colum '(colume_name)', which matters 'this is law'. I am using this query:
SELECT * FROM `stuff` WHERE match(content) against('law' in boolean mode)
But the query above returns 0 rows. Can someone explain why there are no results?
Sunil source
share