Forum Moderators: open

Message Too Old, No Replies

mysql match against multiple values

         

breham

7:53 pm on Dec 8, 2011 (gmt 0)

10+ Year Member



Hi,

I have a query which says

SELECT * FROM data WHERE MATCH (nike,trainers) AGAINST (brand,title,description)


What I want to do is extend that a bit to say that Nike can be 'Nike or Adidas' and trainers could be 'trainers or running shoes' or even 'trainers OR running shoes OR plimsoles'

Any ideas on the formatting of the query - or if it's even possible?

Many thanks in advance

Brett

httpwebwitch

9:18 pm on Dec 8, 2011 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



is this mysql?

and... do you have a full-text index on those fields?

if so, check this out:
[dev.mysql.com...]

when crafting the query, you might need to replace " OR " with " ", "NOT" with "-", etc