让我们说我想找到包含匹配项的行。例如:
select * from tableName where tableName.colName like '%abc%' limit 5;
这将为我提供包含表abc
中列colName
内的子字符串tableName
的行。现在,如何获取列colName 不列包含字符串abc
的行。 Postgres中是否有某种否定运算符?
答案 0 :(得分:2)
使用not like
:
select * from tableName where tableName.colName not like '%abc%' limit 5;