I have a query that works :

$sql = "SELECT questions.qid, questions.title, MATCH questions.title,
questions.question AGAINST ('support') as relavance FROM questions ORDER BY
relavance DESC LIMIT 0, 50";

I would like this query to also match results from the field respons in the
table respons.
I tried this without help :

$sql = "SELECT questions.qid, questions.title, MATCH questions.title,
questions.question, respons.respons AGAINST ('support') as relavance FROM
questions, respons WHERE questions.qid = respons.qid ORDER BY relavance DESC
LIMIT 0, 50";

Can you help ?


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to