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 have a $string variable, and I use SELECT * FROM db WHERE description LIKE '%$string%' OR headline LIKE '%$string%'

As seen, i want to search the two fields "description" and "headline" to see if the string variable matches any of them...

Problem is that I want it to match whole words!!!

Ex: If description contains "hello", it is enough if $string is an 'h'... this is not what I want... it has to match the whole word only!

Must i split the querystring into words for this? or what?

Please help... thanks alot!

share|improve this question

2 Answers

up vote 8 down vote accepted

If you want full word matching you should consider trying FULLTEXT searching. One prerequisite is that your table must be using the MyISAM engine:

CREATE TABLE test (
  id INT(11) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
  headline VARCHAR(120) NOT NULL,
  description VARCHAR(255) NOT NULL,
  FULLTEXT(headline, description)
) ENGINE=MyISAM;

You would query for matches like so:

SELECT *
FROM test
WHERE MATCH (headline,description) AGAINST('$string');

This has the added benefit of ordering your results by relevancy.

share|improve this answer
why isnt there a feature like this on InnoDb databases? – Jimmery Feb 20 at 13:56
1  
@Jimmery there will be FULLTEXT searching in MySQL 5.6 InnoDB when it's released. Keep an eye out for it! – cballou Feb 22 at 16:41
excellent! cheers for the info! – Jimmery Feb 22 at 17:17

An alternative to full text searching, which may be sufficient, is to use a REGEXP function.

Your example query might then be:

SELECT *
  FROM db
 WHERE description REGEXP '[[:<:]]$string[[:>:]]' = 1
    OR headline REGEXP '[[:<:]]$string[[:>:]]' = 1

See http://dev.mysql.com/doc/refman/5.1/en/regexp.html

share|improve this answer
Note that REGEXP is pretty inefficient for larger sets of data because MySQL can't take advantage of indexing. – cballou Feb 22 at 16:44

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.