I am currently trying to create a keyword search on a site I am working on.
I have created an index and have ran the following SQL to test it out:
$sql = "SELECT *, MATCH (title, description, location) AGAINST ('web designer') FROM job";
The query returns results, unfortunately it is returning all the records from the table I am querying.
I know there are only 4 records with 'web designer' anywhere in the record contained within the job table.
Does anyone have any ideas why it is returning all the records within the table??