WHERE (MATCH (keyword) AGAINST (‘believe’in boolean mode) orkeywordin (“”))
This one, however, produces many rows:
WHERE (MATCH (keyword) AGAINST (‘’in boolean mode) orkeywordin (“believe”))
Does anyone have a good reason why? This is the only word that has ever given me problems. If I substitute the word lavender in both where clauses, I get many rows returned. There is just something weird going on with the word believe.
(no operator)
By default (when neither + nor - is specified) the word is optional, but the rows that contain it are rated higher. This mimics the behavior of MATCH() … AGAINST() without the IN BOOLEAN MODE modifier.
I just read the webpage your provided, but I’m not sure what you mean by, “Give this a try”. As I stated in my original post, those two queries BOTH provide results if I just replace the word believe with lavender. So…I’m still confused as to what is going on.