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 created a FULLTEXT Index for columns: City, Group and Text called city_group_text_comparator

How do I do a simple query to look up a string on all 3?

I tried this:

$result = mysql_query("SELECT * FROM Posts WHERE MATCH (City, `Group`, Text) AGAINST ('$search') LIMIT $limit_posts OFFSET $first_post");

How does it order the results?

Thanks

share|improve this question
lol I managed to do it... mmm do I answer it myself? – Liso22 Aug 3 '11 at 7:18
Yes, that's the right thing to do. Answer the question and accept it. StackOverflow's goal is to build a repository of answers to specific programming questions. You would not further than goal by failing to add the answer, even if it's your own question. The next person to have the same question and finds this page will thank you for it. – Dan Grossman Aug 3 '11 at 7:18

1 Answer

up vote 2 down vote accepted

My example was actually right:

Adding inverted quotes around Group did the trick:

$result = mysql_query("SELECT * FROM Posts WHERE MATCH (City, `Group`, Text) AGAINST ('$search') LIMIT $limit_posts OFFSET $first_post");

Probably it's a reserved value for MySQL, honestly don't know why, but nevertheless it works this way.

share|improve this answer
GROUP BY is a clause in SELECT queries. That's why it's a reserved word. – Dan Grossman Aug 3 '11 at 7:19

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.