1

我如何编写一个 mySQL 查询,其中我正在使用 LIKE 运算符查找某些内容,而不是等于什么是 LIKE?

select * from ets_fi where name like '%barcode&' <> '%barcode%';
4

1 回答 1

10

不喜欢

select * from ets_fi where name NOT LIKE '%barcode%';

或者,如果我误解了您的意图,您可能想要:

select * from ets_fi where name LIKE '%barcode%' AND name != 'barcode';
于 2012-08-01T16:28:12.713 回答