如何选择字段总和大于MongoDB中的值的位置

时间:2015-04-25 02:33:26

标签: mongodb mongodb-query nosql

使用MongoDB,我该如何编写这个常规SQL语句?

SELECT * FROM table WHERE (field1+field2+field3) > 1

我一直在搞乱$ group,$ project,$ add等等。我觉得我在整个解决方案中都在跳舞,但无法理解。

3 个答案:

答案 0 :(得分:4)

最简单的方法是使用$where(我不是说通过聚合无法做到这一点)

db.table.find({$where: function() {
   return this.field1 + this.field2 + this.field3 > 1
   // most probably you have to handle additional cases if some of the fields do not exist.
}}

它的优点是它简单直观,而缺点:

  

要求数据库处理JavaScript表达式或   集合中每个文档的功能。

如果你需要经常进行这种搜索,我会继续创建一个新字段,其中存储3个字段的总和并在其上放置索引。缺点是你必须增加你的app逻辑。

答案 1 :(得分:1)

System.IO.File.WriteAllBytes("c:\\test.zip", (byte[])responseData);

答案 2 :(得分:0)

这是一篇旧帖子,但这可能有助于寻找其他解决方案的人。我发现这比 $where.aggregate() 更简单。

> db.foo.insert({"a": 17, "b": 8})
> db.foo.find({$expr: {$gt: [{$add: ["$a", "$b"]}, 25]}})   // no result
> db.foo.find({$expr: {$gt: [{$add: ["$a", "$b"]}, 24]}})
{ "_id" : ObjectId("602acf55a69fb564c11af7db"), "a" : 17, "b" : 8 }