I want search those rows that do not contain "rajasthan" in the state field using match against in MySql.
My query is this:
SELECT * from member where MATCH(state) AGAINST('-rajasthan' IN BOOLEAN MODE)
However, it returns an empty set of result.
What is the problem with this?