Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

mysql múltiplo OU NÃO GOSTA


Isso é feito mais facilmente com REGEXP . Para várias palavras, use um 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