vote up 1 vote down star
1

I would like to write an SQL query that searches for a keyword in a text field, but only if it is a "whole word match" (e.g. when I search for "rid", it should not match "arid", but it should match "a rid".

I am using MySQL.

Fortunately, performance is not critical in this application, and the database size and string size are both comfortably small, but I would prefer to do it in the SQL than in the PHP driving it.

flag

5 Answers

vote up 1 vote down check

You can use REGEXP and the [[:<:]] and [[:>:]] word-boundary markers:

SELECT *
FROM table 
WHERE keywords REGEXP '[[:<:]]rid[[:>:]]'
link|flag
vote up 0 vote down

code to retrieve all the rows and columns containing the word in textbox???

link|flag
vote up 1 vote down

This is the best answer I've come up myself with so far:

SELECT * FROM table 
WHERE keywords REGEXP '^rid[ $]' OR keywords REGEXP ' rid[ $]'

I would have simplified it to:

SELECT *
FROM table
WHERE keywords REGEXP '[^ ]rid[ $]'

but [^ ] has a special meaning of "NOT a space", rather than "line-beginning or space".

How does REGEXP compare to multiple LIKE conditions? (Not that performance matters in this app.)

link|flag
If you made it [ ^], I think the second would work. ^ is only "not" when it is the first character in a set, IIRC. – Travis Jensen Mar 18 at 4:47
I wonder if SQL REGEXP has a "word boundary" field like Perl \b? That would handle spaces, punctuation, etc. – Andy White Mar 18 at 4:49
@Andy, MySql uses [[:<:]] and [[:>:]] as word-boundary markers. – Luke Mar 18 at 10:17
@Oddthinking, Word-boundary markers are probably what you should be using. See my answer for an example. – Luke Mar 18 at 10:18
vote up 1 vote down
select * from table where Locate('rid ', FieldToSearch) > 0 
      or Locate(' rid', FieldToSearch) > 0

This will handle finding rid where it is preceded or followed by a space, you could extend the approach to take account of .,?! and so on, not elegant but easy.

link|flag
vote up 1 vote down
select blah blah blah
where column like 'rid %'
   or column like '% rid'
   or column like '% rid %'
   or column =    'rid'
link|flag
Depending on the situation, you should also be careful of punctuation. For instance, none of those would return 'rid.' – Goog Mar 18 at 4:29

Your Answer

Get an OpenID
or

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