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 search items for eg '%ab', '%avcd%', %sr%', '%pple%' in my PHP variable. I know LIKE is used in MySQL as:

Select * from tblName where fieldname like '%ab'

I have a long list of search conditions as mentioned earlier and I know that

Select * from tblName where fieldname like in ('%ab','%avcd%','%sr%','%pple%')

doesn't work. What is the best way to resolve the problem?

share|improve this question
1  
...value like ('%ab%') or value like ('%avcd%') or ... – k102 Nov 10 '11 at 6:38

4 Answers

up vote 6 down vote accepted
SELECT * from tblName where fieldname REGEXP 'ab|avcd|sr|pple';
share|improve this answer
Thanks for sharing. I didn't knew this pattern. Would be easy to use in future. thanks again. – pinaldesai Nov 10 '11 at 6:51
This is exactly what i want. Thanks mate.. – ratna Nov 10 '11 at 8:22

Fulltext search is what you are really looking for.

share|improve this answer

Try this Select * from tblName where fieldname like '%ab' or fieldname like '%ab' or fieldname like %sr%' or fieldname like '%pple%'

share|improve this answer

You can use full text indeexing if the table is myisam. See http://dev.mysql.com/doc/refman/5.5/en/fulltext-search.html for more details.

share|improve this answer

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.