Dec 11, 2002 #1 dkin Programmer Dec 11, 2002 39 ES Hi, What is the MySQL statement to do a free text search in a field. e.g. look for all the entries that contain the word ’zoom’, while the data in the field may be like that ’zoomX8, macro, flash’. Thanks.
Hi, What is the MySQL statement to do a free text search in a field. e.g. look for all the entries that contain the word ’zoom’, while the data in the field may be like that ’zoomX8, macro, flash’. Thanks.
Dec 11, 2002 #2 sleipnir214 Programmer May 6, 2002 15,350 US WHERE columname like '%zoom%' or WHERE columnname regexp 'zoom' Want the best answers? Ask the best questions: http://www.tuxedo.org/~esr/faqs/smart-questions.htmlTANSTAAFL! Upvote 0 Downvote
WHERE columname like '%zoom%' or WHERE columnname regexp 'zoom' Want the best answers? Ask the best questions: http://www.tuxedo.org/~esr/faqs/smart-questions.htmlTANSTAAFL!