如何在 Access/SQL 中搜索*包括*引号的单词

How do I search for words *including* quotation marks in Access/SQL

我需要在 SQL 搜索中区分“"Omreisende"”和“Omreisende”。我该如何编写这样的查询?到目前为止我找到的解决方案(例如 this one),专门试图绕过引号,而我需要区分带引号的字符串和不带引号的字符串。

MS Access 2007 运行 到 Oracle 服务器。

提前致谢!

在 MS-Access 中,您需要这样做:

Quotation Marks in Access

[LastName] = """strName"""

在甲骨文中: Quotation Marks in Oracle

[LastName] = '''strName'''

所以在 MS-Access 中转义运算符是双引号 " 而在 Oracle 中它是单引号 '