LIKE 和 CONTAINS[cd] 之间有什么区别?

发布于 2024-10-27 01:35:24 字数 115 浏览 4 评论 0原文

我可以创建一个谓词“something LIKE %@”或者我可以使用“something CONTAINS[cd] %@”

两种形式有什么区别。

I can create a predicate "something LIKE %@" or I can use "something CONTAINS[cd] %@".

What is the difference between the two forms.

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

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

发布评论

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

评论(1

北方的韩爷 2024-11-03 01:35:24

LIKE 允许进行通配符比较,而 CONTAINS 则不允许。

“Steve Martin”包含“Martin

评估为真,但是:

"Steve Martin" contains "Martini"

...不但是:

"Steve Martin" like "Martin*"

...确实评估为真。

LIKE 允许进行更复杂的比较,MATCHES 允许进行正则表达式比较。

LIKE allows for wildcard comparisons while CONTAINS does not.

"Steve Martin" contains "Martin"

evaluates to true but:

"Steve Martin" contains "Martini"

... does not but:

"Steve Martin" like "Martin*"

... does evaluate as true.

LIKE allows for more complex comparison and MATCHES allows for regex comparisons.

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