I have a table like this
CREATE TABLE jobs(
id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY,
title VARCHAR(200),
body TEXT,
FULLTEXT (title,body)
) ENGINE=MyISAM;
And two records in this table
...
7. 10 Senior PHP Developers (Leaders)
8. 30 PHP Developers..
...
And two queries:
Return 2 records above
SELECT * FROM jobs WHERE MATCH (title,body) AGAINST ('developers')
Return empty set
SELECT * FROM jobs WHERE MATCH (title,body) AGAINST ('developer')
I thought that MySQL can found these records with 'developer'. But why it didn't work?