标签: php mysql
例如,我用这个:
WHERE titel LIKE '%armband%' OR titel LIKE '%armreif%' AND titel NOT LIKE '%herren%'
但仍然得到包括像'Herrenarmband'等字样的结果。这有什么不对吗?
答案 0 :(得分:1)
试试这个
WHERE (titel LIKE '%armband%' OR titel LIKE '%armreif%') AND (titel NOT LIKE '%herren%')