PostgreSQL 8.4 中的 <@ 运算符是什么?

发布于 2024-10-20 02:50:06 字数 247 浏览 2 评论 0 原文

我无法破译这个操作员在做什么。我知道它以某种方式比较数组,但我找不到任何有关它的文档。我也尝试过 >@ 但这似乎是错误的。当我搜索“at Operator”时,谷歌给出了糟糕的结果广告,但它不是很具体。任何信息将不胜感激。

我也没有(至少我不这么认为)在数据库中定义任何新的运算符。

SELECT id 
FROM organizations
WHERE  ARRAY[56] <@ ancestry

I am having trouble decyphering what this operator is doing. I know that it is somehow comparing the array's, but I can find no documentation on it. I also have tried >@ but that seems to error. Google yealded bad results ad when I search for "at operator" it isn't very specific. Any information would be much appreciated.

I also have not (at least I don't think so) defined any new operators in the database.

SELECT id 
FROM organizations
WHERE  ARRAY[56] <@ ancestry

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

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

发布评论

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

评论(1

抠脚大汉 2024-10-27 02:50:06

手册

<@  is contained by

当你的数组ancestry 的值为 56,结果将为 true

From the manual:

<@  is contained by

When your array ancestry has the value 56, the result will be true.

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