如何在具有undefined
值的字段中搜索记录过滤:
db.records.aggregate({
$match: {
myField: "undefined",
}
})
如何在具有undefined
值的字段中搜索记录过滤:
db.records.aggregate({
$match: {
myField: "undefined",
}
})
按$type:6
, ( mongodb referece ,请注意此类型标记为 'deprecated' ) 过滤它:
db.records.aggregate({
$match: {
myField: {'$type':6},
}
})
如果要过滤掉缺少某些字段的文档,请使用$exists
运算符。
这适用于我的机器:
> db.test.drop()
true
> db.test.insert( {'Hello':'World!', 'myField':42})
> db.test.insert( {'Hello again':'World!'})
> db.test.aggregate({'$match':{ 'myField':{'$exists':false} }})
{
"result" : [
{
"_id" : ObjectId("51b9cd2a6c6a334430ec0c98"),
"Hello again" : "World!"
}
],
"ok" : 1
}
存在 myField 的文档不会显示在结果中。
如果您有存在但未定义的字段,您可以使用 null 搜索它们。
db.records.aggregate({
$match: {
myField: {$exists: true, $eq: null},
}
})