当前位置:  开发笔记 > 数据库 > 正文

MongoDB按属性名称搜索具有该属性的任何文档

如何解决《MongoDB按属性名称搜索具有该属性的任何文档》经验,为你挑选了2个好方法。

如何在MongoDB中搜索具有给定属性的任何文档?

我想要做的是找到所有具有该属性的文档,无论它的价值如何,我似乎无法做到这一点.我尝试了以下内容

db.collection.find({"property", null}); //Finds things that don't have that property
db.collection.find({"proprety", {}}); //Doesn't find anything unless something has the empty object as the value

实际上有这种语法还是我需要进行mapreduce操作?



1> vladimir..:

以下是使用$ exists的示例答案:

db.collection.find( { property : { $exists: true } } );



2> halfdan..:

只需反转查询并搜索属性不为null的文档($ ne not equals)

db.collection.find( { property : { $ne : null } } );


经过多次搜索后,看起来$ exists也可以完成同样的工作
推荐阅读
刘美娥94662
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有