Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道您可以将 LIKE 用于选择语句来搜索字符串,然后使用通配符来匹配该字符串.. 例如:
Select * from table where first_name LIKE '%r%';
将返回名称,例如 robert、roland、craig 等。
我很好奇您将如何在字符串中搜索实际的通配符,例如 %:
Select * from table where values LIKE '% % %';
(中间 % 是您要寻找的)(显然这不是正确的方法,这就是我要问的原因)。
怎么样
LIKE '%\%%' ESCAPE '\'
http://docs.oracle.com/cd/B12037_01/server.101/b10759/conditions016.htm
就像 LIKE '%%' 会更容易。