我想执行以下查询:
db.mycollection.find(HAS IMAGE URL)
什么应该是正确的语法?
这将使用名为"IMAGE URL"的键返回所有文档,但它们仍可能具有空值.
db.mycollection.find({"IMAGE URL":{$exists:true}});
这将返回包含名为"IMAGE URL"的键和非空值的所有文档.
db.mycollection.find({"IMAGE URL":{$ne:null}});
另外,根据文档,$ exists目前不能使用索引,但$ ne可以.
编辑:由于对此答案感兴趣,添加一些示例
鉴于这些插入:
db.test.insert({"num":1, "check":"check value"}); db.test.insert({"num":2, "check":null}); db.test.insert({"num":3});
这将返回所有三个文件:
db.test.find();
这将仅返回第一个和第二个文档:
db.test.find({"check":{$exists:true}});
这将仅返回第一个文档:
db.test.find({"check":{$ne:null}});
这将仅返回第二个和第三个文档:
db.test.find({"check":null})
一个班轮是最好的:
db.mycollection.find({ 'fieldname' : { $exists: true, $ne: null } });
这里,
mycollection:放置您想要的收藏品名称
fieldname:放置所需的字段名称
解释:
$ exists:如果为true,则$ exists匹配包含该字段的文档,包括字段值为null的文档.如果为false,则查询仅返回不包含该字段的文档.
$ ne选择字段值不等于指定值的文档.这包括不包含该字段的文档.
因此,在您提供的情况下,查询将返回所有具有imageurl字段的文档并且不具有null值:
db.mycollection.find({ 'imageurl' : { $exists: true, $ne: null } });
在pymongo你可以使用:
db.mycollection.find({"IMAGE URL":{"$ne":None}});
因为pymongo将mongo"null"表示为python"None".
db.collection_name.find({"filed_name":{$exists:true}});
获取包含此filed_name的文档,即使它为null.
我的主张:
db.collection_name.find({"field_name":{$type:2}}) //type:2 == String
您可以检查所需属性的类型,它将返回其field_name查询包含值的所有文档,因为您正在检查字段的类型否则如果它为null,则类型条件不匹配,因此不会返回任何内容.
Nb:如果field_name有一个空字符串,意思是"",它将被返回.它的行为是相同的
db.collection_name.find({"filed_name":{$ne:null}});
额外验证:
好的,所以我们还没有完成,我们需要一个额外的条件.
db.collection_name.
find({ "field_name":{$type:2},$where:"this.field_name.length >0"})
要么
db.collection_name.
find({ "field_name":{$ne:null},$where:"this.field_name.length >0"})
所有类型的参考:https: //docs.mongodb.com/manual/reference/operator/query/type/#op._S_type
分享给未来的读者.
此查询适用于我们(从MongoDB指南针执行的查询):
{ "fieldName": { "$nin": [ "", null ] } }