sql >> Base de Datos >  >> RDS >> Mysql

mysql multiple O NO ME GUSTA

Esto se hace más fácilmente con REGEXP . Para varias palabras, use un grupo como (one|two|three)

SELECT 
  field1,
  field2,
  field3,
  field4
from datatable
WHERE 
  title NOT REGEXP '(word1|word2|word3|word4|word5...|word9)'
  AND MATCH (title) AGAINST ("\"brandname\" " IN BOOLEAN MODE)
ORDER BY total ASC
LIMIT 0,60