SQL/SOQL 中的查询名称带有“” ' ”作为名称的一部分

发布于 2024-10-27 04:01:48 字数 139 浏览 0 评论 0原文

我需要编写一个 soql/sql 查询,它需要查找其中包含撇号的名称,例如 shaquel o'Neil。问题在于 where 子句取代了 Neil 部分,因为该部分被视为搜索条件的结尾。

对于如何处理这种情况有什么建议吗?

谢谢!

I need to write a soql/sql query which needs to look up for a name that has an apostrophes in it, Like shaquel o'Neil. The problem is that the where clauses dops the Neil part as that is considered as the end of the search criteria.

Any suggestions how to work this situation?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

手长情犹 2024-11-03 04:01:48

在大多数 SQL 中,您可以通过将其加倍为 '' 来引用 '。但据我所知,您必须在 SOQL 中使用 \ 来转义它 - 因此您在测试用例中检查 'shaquel o\'Neil'

我检查了它 - 正如我所想,在 SOQL 中你用 \ 转义。以下是所有 SOQL 特殊字符的列表:(

   \n  New line
   \r  Carriage return
   \t  Tab
   \b  Bell
   \f  Form feed
   \"  One double-quote character
   \'  One single-quote character
   \\  Backslash

来源:带引号的字符串转义序列

In most SQL you would quote ' by doubling it to ''. But afaik you have to escape it with an \ in SOQL - so you check for 'shaquel o\'Neil' in your testcase.

I checked it - as I thought, in SOQL you escape with an \. Here is an list of all SOQL-special-chars:

   \n  New line
   \r  Carriage return
   \t  Tab
   \b  Bell
   \f  Form feed
   \"  One double-quote character
   \'  One single-quote character
   \\  Backslash

(Source: Quoted String Escape Sequences )

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文