I'm trying to use MATCH against a list of ingredients separated by the OR operator to see if they exist in a recipe. I can have up to 30 ingredients on the right hand side of the MATCH operator and it will return all of the recipes I can make. However, if I increase the number of ingredients it stops working correctly, and any operands after 30 are ignored.

eg.

WHERE ingredients_in_recipe MATCH 'ing1 OR ing2 OR ing3 OR... ing30' works fine.

WHERE ingredients_in_recipe MATCH 'ing1 OR ing2 OR ing3 OR... ing30 OR ing31' now the 31st ingredient is ignored.

How do I increase the number of OR operators I can use? Is this similar to or related to the limits on the glob and like statements of 100 parameters?

Finding this bug has taken me hours of tracking, and then hours of research to try to find an answer... all to no avail, I hope you all can help and thank you in advance!

Peace.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.