I have two tables: recipes and tags, to be used for a fulltext search in a CodeIgniter App. For every 1 recipe, they're is an unlimited number of tags (some examples of tags: tasty, chicken, dinner).
Sample Rows in the recipes table:
Recipe Id: 1.....Recipe Name: Mo's Chicken Dinner.....
Recipe Id: 2.....Recipe Name: Mo's Lobster Bisque.....
Sample Rows in the tags table:
Corresponding Recipe Id: 1.....Tag: Tasty.....
Corresponding Recipe Id: 2.....Tag: Seafood.....
I want to be able to search for lobster and have recipes that names match "lobster" show up in the search. But I also want to search for "Seafood" and have tags that have a corresponding recipe show up.
Here's my code (which worked for one table fulltext search, before I added the join statements):
// Execute our SQL statement and return the result
$sql = "SELECT recipes.name,recipes.durationtotal
FROM recipes LEFT JOIN tags ON recipes.id = tags.recipes_id
WHERE MATCH (recipes.name,tags.tag) AGAINST (?) > 0 AND user_id = ".$id." ORDER BY recipes.name ASC";
$query = $this->db->query($sql, array($terms, $terms));
return $query->result();
After putting this in, I get the error:
Error Number: 1210
Incorrect arguments to MATCH
SELECT recipes.name,recipes.durationtotal FROM recipes LEFT JOIN tags ON recipes.id = tags.recipes_id WHERE MATCH (recipes.name,tags.tag) AGAINST ('f') > 0 AND user_id = 1 ORDER BY recipes.name ASC
Filename: search_model.php
Line Number: 15
Line 15 is: $query = $this->db->query($sql, array($terms, $terms));
Thanks for any and all help!