Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to have mysql fulltext search through 4 tables. They all have similar structure, so I would like to search through TITLE and TEXT fields in all 4. My query looks like this:

$result = mysql_query(" (SELECT id, title, text, seo_url, image, 'news' as type, MATCH(title,text) AGAINST ('$keyword' IN BOOLEAN MODE) AS relevance FROM gw_news WHERE MATCH(title,text) AGAINST ('$keyword' IN BOOLEAN MODE) ORDER BY relevance DESC) UNION (SELECT id, title, text, seo_url, image, 'game-review' as type, MATCH(title,text) AGAINST ('$keyword' IN BOOLEAN MODE) AS relevance FROM gw_game_review WHERE MATCH(title,text) AGAINST ('$keyword' IN BOOLEAN MODE) ORDER BY relevance DESC) UNION (SELECT id, title, text, seo_url, image, 'hardware-review' as type, MATCH(title,text) AGAINST ('$keyword' IN BOOLEAN MODE) AS relevance FROM gw_hardware_review WHERE MATCH(title,text) AGAINST ('$keyword' IN BOOLEAN MODE) ORDER BY relevance DESC) UNION (SELECT id, title, text, seo_url, image, 'game-announcement' as type, MATCH(title,text) AGAINST ('$keyword' IN BOOLEAN MODE) AS relevance FROM gw_game_announcement WHERE MATCH(title,text) AGAINST ('$keyword' IN BOOLEAN MODE) ORDER BY relevance DESC)");

One more question: currently I'm getting result for only perfect match, not something "like" so my search is not so reliable. How to make it better? Thanx!

share|improve this question
display query in multi-line... who is going to read so long query??? – Fahim Parkar Feb 12 '12 at 7:45
use "like" combined with upper()/lower(): sqlinfo.net/mysql/mysql_function_upper_lower.php – alfasin Feb 12 '12 at 10:23

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.