SELECT title FROM blogs INNER JOIN user_info ON blogs.user_id=user_info.user_id WHERE MATCH (blogs.title,blogs.body) AGAINST ('edited') LIMIT 5
mysql throws no errors, yet returns no results. The search term 'edited' is in the body field of the fulltext index (title,body).
??
Thanks. -Chris