如何在MongoDB中查询“falsey”值?

时间:2012-09-19 10:11:52

标签: string mongodb boolean

我想查询Mongo集合,查找缺少特定字段或在Python中评估为false的值的文档。这包括原子值null0''(空字符串),false[]。但是,包含此类值(例如['foo', '']或仅[''])的数组 falsey且必须匹配。我可以使用Mongo的结构化查询(不使用JavaScript)吗?

$type似乎没有帮助:

> db.foo.insert({bar: ['baz', '', 'qux']});
> db.foo.find({$and: [{bar: ''}, {bar: {$type: 2}}]});
{ "_id" : ObjectId("50599937da5254d6fd731816"), "bar" : [ "baz", "", "qux" ] }

2 个答案:

答案 0 :(得分:3)

这应该有效

db.test.find({$or:[{a:{$size:0}},{"a.0":{$exists:true}}]})

使用a密钥确保0字段内没有对象。

e.g。

> db.test.find()

{ "_id": ObjectId("5059ac3ab1cee080a7168fff"), "bar": [ "baz", "", "qux" ] }
{ "_id": ObjectId("5059ac48b1cee080a7169000"), "hello": 1, "bar": false, "world": 34 }
{ "_id": ObjectId("5059ac53b1cee080a7169001"), "hello": 1, "world": 42 }
{ "_id": ObjectId("5059ac60b1cee080a7169002"), "hello": 13, "bar": null, "world": 34 }
{ "_id": ObjectId("5059ac6bb1cee080a7169003"), "hello": 133, "bar": [ ], "world": 334 }
{ "_id": ObjectId("5059b36cb1cee080a7169004"), "hello": 133, "bar": [ "" ], "world": 334 }
{ "_id": ObjectId("5059b3e3b1cee080a7169005"), "hello": 133, "bar": "foo", "world": 334 }
{ "_id": ObjectId("5059b3f8b1cee080a7169006"), "hello": 1333, "bar": "", "world": 334 }
{ "_id": ObjectId("5059b424b1cee080a7169007"), "hello": 1333, "bar": { "0": "foo" }, "world": 334 }

> db.test.find({$or: [{bar: {$size: 0}}, {"bar.0": {$exists: true}}]})

{ "_id": ObjectId("5059ac3ab1cee080a7168fff"), "bar": [ "baz", "", "qux" ] }
{ "_id": ObjectId("5059ac6bb1cee080a7169003"), "hello": 133, "bar": [ ], "world": 334 }
{ "_id": ObjectId("5059b36cb1cee080a7169004"), "hello": 133, "bar": [ "" ], "world": 334 }
{ "_id": ObjectId("5059b424b1cee080a7169007"), "hello": 1333, "bar": { "0": "foo" }, "world": 334 }

答案 1 :(得分:1)

我发现这一点:https://jira.mongodb.org/browse/SERVER-1854?page=com.atlassian.jira.plugin.system.issuetabpanels:changehistory-tabpanel从当天回来。

我可以在我的MongoDB 2.0.1上复制它(我也玩了一下,看它是否把它当作其他东西):

> db.g.find()
{ "_id" : ObjectId("50599eb65395c82c7a47d124"), "bar" : [ "baz", "", "qux" ] }
{ "_id" : ObjectId("5059a0005395c82c7a47d125"), "a" : 3, "b" : { "a" : 1, "b" : 2 } }
> db.g.find({bar: {$type: 4}});
> db.g.find({a: {$type: 2}});
> db.g.find({a: {$type: 16}});
> db.g.find({bar: {$type: 16}});
> db.g.find({bar: {$type: 2}});
{ "_id" : ObjectId("50599eb65395c82c7a47d124"), "bar" : [ "baz", "", "qux" ] }
> db.g.find({bar: {$type: 3}});
> db.g.find({b: {$type: 3}});
{ "_id" : ObjectId("5059a0005395c82c7a47d125"), "a" : 3, "b" : { "a" : 1, "b" : 2 } }

当我使用$type 4时,我无法获取包含数组的文档。正如您所看到的,$type 3工作正常(可能与:https://jira.mongodb.org/browse/SERVER-1475有关)但数组似乎无法接受。

您可能会看到错误。如果您在MongoDBs站点(jira.mongodb.org)上提交JIRA,它可以帮助您解决问题。

但是,$type操作可能无法解决您的问题。这可能通过客户端方法更好地完成,例如,如果没有以查询存在的方式的元素,则完全取消设置字段。这标准化了您的查询模式,使其更易于集成。

因此,我个人的建议是将“假”值标准化为一个相同的值。

修改

我注意到他们已将原始错误标记为重复(这就是它被关闭的原因)但是我不确定它是如何重复的。这些数组不是作为对象而是作为字符串被拾取,很可能因为$ type作用于该字段中的每个元素而不是字段本身(或类似的东西)。

我仍然会打开一个JIRA并强调该阵列根本无法拾取。