比较 Mongoid 中的单独列

发布于 2025-01-03 14:01:12 字数 199 浏览 0 评论 0原文

我正在寻找相当于以下内容的 mongoid: 如何在 Oracle 中选择两列作为一列进行比较

我可以'似乎找不到任何比较同一查询中的列的文档或示例。这在 Mongoid 中是不可能的吗?

I'm looking for the mongoid equivalent to:
How to select the comparison of two columns as one column in Oracle

I can't seem to find any documentation or examples comparing columns within the same query. Is this just not possible in Mongoid?

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

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

发布评论

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

评论(1

一刻暧昧 2025-01-10 14:01:12

不,您需要下拉到 mongodb ruby​​ 驱动程序来执行此操作,并且它可能会非常慢,因为它是一个不会使用索引的 javascript 查询:

Model.collection.find_one({"$where" => 'this.name == this.name2'})

这相当于此处的第三个 shell 命令。

> db.collection.insert({name: "awesome", name2: "awesome"})
> db.collection.insert({name: "awesome", name2: "awesome2"})
> db.collection.find('this.name == this.name2')
{ "_id" : ObjectId("xxx"), "name" : "awesome", "name2" : "awesome" }
> (line shown to signify end of results)

: 注意:如果文档没有键 name 并且该文档也没有键 name2,这将返回 true,因为 null == null。

Nope, you need to drop down to the mongodb ruby driver to do this and it will potentially be very slow as it is a javascript query that will not use an index:

Model.collection.find_one({"$where" => 'this.name == this.name2'})

Which is equivalent to third shell command here.:

> db.collection.insert({name: "awesome", name2: "awesome"})
> db.collection.insert({name: "awesome", name2: "awesome2"})
> db.collection.find('this.name == this.name2')
{ "_id" : ObjectId("xxx"), "name" : "awesome", "name2" : "awesome" }
> (line shown to signify end of results)

Note: if a document does not have key name and that same document also does not have key name2 that this will return true because null == null.

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