MySQL Join and Match/Against Search Fail
问题 I'm basically trying to create a search to find articles (or articles from an author). I've ended up with this query: SELECT `articles`.*, `authors`.* FROM `articles` LEFT JOIN `authors` ON (`authors`.`id` = `articles`.`author_id`) WHERE MATCH (`articles`.`title`, `articles`.`description`) AGAINST ("test") OR MATCH (`authors`.`first_name`, `authors`.`last_name`) AGAINST ("test") GROUP BY `articles`.`id` I have made sure that all four matched fields are FULL TEXT indexes. The search matches