所以我试图找到所有具有字段集且不为空的记录。
我尝试使用$exists,但是根据MongoDB 文档,此查询将返回等于 null 的字段。
$exists
$exists匹配包含存储空值的字段的文档。
所以我现在假设我必须做这样的事情:
db.collection.find({ "fieldToCheck" : { $exists : true, $not : null } })
但是,每当我尝试这个时,我都会收到错误[invalid use of $not] 任何人都知道如何查询这个?
[invalid use of $not]
使用$ne(用于“不等于”)
$ne
db.collection.find({ "fieldToCheck": { $ne: null } })