mongodb Criteria 查询条件字段不为空
时间: 2023-05-23 17:06:57 浏览: 1288
查询语句为什么不为空?
可以使用 $ne 操作符来查询某个字段不为空的文档,例如:
```
db.collection.find({ field: {$ne: null} })
```
其中,field 为需要查询的字段名称。这条语句会查找该字段的值不为 null 的文档,也就是该字段不为空的文档。如果需要查询多个字段不为空的文档,可以使用 $and 操作符,例如:
```
db.collection.find({
$and: [
{ field1: {$ne: null} },
{ field2: {$ne: null} }
]
})
```
这条语句会查找 field1 和 field2 均不为空的文档。
阅读全文