I want to return the lines in which there is no word 'b'.
SELECT * FROM `login` WHERE MATCH(`author`) AGAINST('param -b' IN BOOLEAN MODE)" Returns
Array ( [author] => param a ) Array ( [author] => param a ) Array ( [author] => param b ) Array ( [author] => param ) The Myisam table is used, the FULLTEXT index is FULLTEXT on the column.