I am trying to do a match querying from two tables:
SELECT a.id,a.forum,a.topic,b.topic_id,b.body MATCH(a.topic,b.body) AGAINST('guitar,microphone') AS relevance FROM forum_topics a INNER JOIN forum_threads b ON a.id=b.topic_id WHERE MATCH(a.topic,b.body) AGAINST('guitar,microphone') ORDER BY relevance DESC LIMIT 0,10
What is wrong with that? Is a dual table match possible? I have a couple single table queries working great, Ihave full text indexing on a.topic and b.body...I am confused
Thanks for any help.