我如何编写mySQL查询,我在寻找使用LIKE运算符的东西,而不是像LIKE那样?
select * from ets_fi where name like '%barcode&' <> '%barcode%';
答案 0 :(得分:9)
不喜欢
select * from ets_fi where name NOT LIKE '%barcode%';
或者,如果我误解了你的意图,你可能想要:
select * from ets_fi where name LIKE '%barcode%' AND name != 'barcode';