View Single Post
  #2 (permalink)  
Old 11-09-04
Retail-Therapy's Avatar
Retail-Therapy Retail-Therapy is offline
Can't Touch This
 
Join Date: May 2004
Location: КРОМИДОВО
Posts: 321
Thanks: 3
Thanked 0 Times in 0 Posts
Retail-Therapy is an unknown quantity at this point
if you don't want to, or haven't set up a fulltext index on your description field, try adding spaces to the beginning and the end of the search term;

WHERE description LIKE '% searchterm %'

the best method is to create a fulltext index on your description field, then search by a pattern match;

"SELECT *, MATCH(description) AGAINST ('searchterm') AS score FROM product where MATCH(description) AGAINST ('searchterm') group by score desc"
Reply With Quote