Mysql
 sql >> Database >  >> RDS >> Mysql

mysql multiplo O NON MI PIACE

Questo è più facile con REGEXP . Per più parole, usa un gruppo come (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