Mongodb 移除数组中的空值后,聚合函数以投影数组大小

Mongodb 移除数组中的空值后,聚合函数以投影数组大小,mongodb,mongodb-query,Mongodb,Mongodb Query,我的主要目标是打印等级数大于4的标题,我可以通过下面的查询来实现 db.students.aggregate({$project : { title:1 ,_id : 0, count: {$size : "$grades"}}},{$match: {"count": {$gt:4}}}) 但如果grades数组中有空值,如何删除它们,请尝试此操作,但未给出正确的输出 db.students.aggregate({$project : { title:1 ,_id : 0, count:

我的主要目标是打印等级数大于4的标题,我可以通过下面的查询来实现

db.students.aggregate({$project : { title:1 ,_id : 0,  count: {$size : "$grades"}}},{$match: {"count": {$gt:4}}})
但如果grades数组中有空值,如何删除它们,请尝试此操作,但未给出正确的输出

db.students.aggregate({$project : { title:1 ,_id : 0,  count: {$size : "$grades"}}},{$match: {"count": {$gt:4},grades : {$ne:''}}})
在运行
$size
之前,可以使用删除空的
等级

db.students.aggregate([
    {$project : { title:1 ,_id : 0,  count: { $size : { $filter: { input: "$grades", cond: { $ne: [ "$$this", '' ] } } }}}},
    {$match: {"count": {$gt:4}}}
])
在运行
$size
之前,可以使用删除空的
等级

db.students.aggregate([
    {$project : { title:1 ,_id : 0,  count: { $size : { $filter: { input: "$grades", cond: { $ne: [ "$$this", '' ] } } }}}},
    {$match: {"count": {$gt:4}}}
])

让我们一步一步地解释不同的查询:

集合中所有可能的值
等级

> db.grades.find()
    { "_id" : ObjectId("5cb2ff50d33f6ed856afe577"), "title" : "abc", "grades" : [ 12, 23, 1 ] }
    { "_id" : ObjectId("5cb2ff55d33f6ed856afe578"), "title" : "abc", "grades" : [ 12, 23 ] }
    { "_id" : ObjectId("5cb2ff5cd33f6ed856afe579"), "title" : "abc", "grades" : [ 12, 23, 10, 100, 34 ] }
    { "_id" : ObjectId("5cb2ff63d33f6ed856afe57a"), "title" : "abc", "grades" : "" }
    { "_id" : ObjectId("5cb2ff66d33f6ed856afe57b"), "title" : "abc", "grades" : [ ] }
    { "_id" : ObjectId("5cb2ff6bd33f6ed856afe57c"), "title" : "abc", "grades" : [ 1, 2, 3, 4, 5 ] }
> db.grades.aggregate([{$match: {grades: {$ne:''}} }])

    { "_id" : ObjectId("5cb2ff50d33f6ed856afe577"), "title" : "abc", "grades" : [ 12, 23, 1 ] }
    { "_id" : ObjectId("5cb2ff55d33f6ed856afe578"), "title" : "abc", "grades" : [ 12, 23 ] }
    { "_id" : ObjectId("5cb2ff5cd33f6ed856afe579"), "title" : "abc", "grades" : [ 12, 23, 10, 100, 34 ] }
    { "_id" : ObjectId("5cb2ff66d33f6ed856afe57b"), "title" : "abc", "grades" : [ ] }
    { "_id" : ObjectId("5cb2ff6bd33f6ed856afe57c"), "title" : "abc", "grades" : [ 1, 2, 3, 4, 5 ] }
只是将空成绩记录筛选为:

> db.grades.find()
    { "_id" : ObjectId("5cb2ff50d33f6ed856afe577"), "title" : "abc", "grades" : [ 12, 23, 1 ] }
    { "_id" : ObjectId("5cb2ff55d33f6ed856afe578"), "title" : "abc", "grades" : [ 12, 23 ] }
    { "_id" : ObjectId("5cb2ff5cd33f6ed856afe579"), "title" : "abc", "grades" : [ 12, 23, 10, 100, 34 ] }
    { "_id" : ObjectId("5cb2ff63d33f6ed856afe57a"), "title" : "abc", "grades" : "" }
    { "_id" : ObjectId("5cb2ff66d33f6ed856afe57b"), "title" : "abc", "grades" : [ ] }
    { "_id" : ObjectId("5cb2ff6bd33f6ed856afe57c"), "title" : "abc", "grades" : [ 1, 2, 3, 4, 5 ] }
> db.grades.aggregate([{$match: {grades: {$ne:''}} }])

    { "_id" : ObjectId("5cb2ff50d33f6ed856afe577"), "title" : "abc", "grades" : [ 12, 23, 1 ] }
    { "_id" : ObjectId("5cb2ff55d33f6ed856afe578"), "title" : "abc", "grades" : [ 12, 23 ] }
    { "_id" : ObjectId("5cb2ff5cd33f6ed856afe579"), "title" : "abc", "grades" : [ 12, 23, 10, 100, 34 ] }
    { "_id" : ObjectId("5cb2ff66d33f6ed856afe57b"), "title" : "abc", "grades" : [ ] }
    { "_id" : ObjectId("5cb2ff6bd33f6ed856afe57c"), "title" : "abc", "grades" : [ 1, 2, 3, 4, 5 ] }
现在在变量中投影等级计数值以及所需的其他列。

> db.grades.aggregate([{$match: {grades: {$ne:''}} }, {$project: {_id:0, title:1, count: {$size: "$grades"}  } }])

    { "title" : "abc", "count" : 3 }
    { "title" : "abc", "count" : 2 }
    { "title" : "abc", "count" : 5 }
    { "title" : "abc", "count" : 0 }
    { "title" : "abc", "count" : 5 }
现在匹配等级数组计数大于4的所需条件,如下所示:

> db.grades.aggregate([{$match: {grades: {$ne:''}} }, {$project: {_id:0, title:1, count: {$size: "$grades"}  } }, {$match: {count: {$gte: 4}}}  ])

    { "title" : "abc", "count" : 5 }
    { "title" : "abc", "count" : 5 }
    > 

让我们一步一步地解释不同的查询:

集合中所有可能的值
等级

> db.grades.find()
    { "_id" : ObjectId("5cb2ff50d33f6ed856afe577"), "title" : "abc", "grades" : [ 12, 23, 1 ] }
    { "_id" : ObjectId("5cb2ff55d33f6ed856afe578"), "title" : "abc", "grades" : [ 12, 23 ] }
    { "_id" : ObjectId("5cb2ff5cd33f6ed856afe579"), "title" : "abc", "grades" : [ 12, 23, 10, 100, 34 ] }
    { "_id" : ObjectId("5cb2ff63d33f6ed856afe57a"), "title" : "abc", "grades" : "" }
    { "_id" : ObjectId("5cb2ff66d33f6ed856afe57b"), "title" : "abc", "grades" : [ ] }
    { "_id" : ObjectId("5cb2ff6bd33f6ed856afe57c"), "title" : "abc", "grades" : [ 1, 2, 3, 4, 5 ] }
> db.grades.aggregate([{$match: {grades: {$ne:''}} }])

    { "_id" : ObjectId("5cb2ff50d33f6ed856afe577"), "title" : "abc", "grades" : [ 12, 23, 1 ] }
    { "_id" : ObjectId("5cb2ff55d33f6ed856afe578"), "title" : "abc", "grades" : [ 12, 23 ] }
    { "_id" : ObjectId("5cb2ff5cd33f6ed856afe579"), "title" : "abc", "grades" : [ 12, 23, 10, 100, 34 ] }
    { "_id" : ObjectId("5cb2ff66d33f6ed856afe57b"), "title" : "abc", "grades" : [ ] }
    { "_id" : ObjectId("5cb2ff6bd33f6ed856afe57c"), "title" : "abc", "grades" : [ 1, 2, 3, 4, 5 ] }
只是将空成绩记录筛选为:

> db.grades.find()
    { "_id" : ObjectId("5cb2ff50d33f6ed856afe577"), "title" : "abc", "grades" : [ 12, 23, 1 ] }
    { "_id" : ObjectId("5cb2ff55d33f6ed856afe578"), "title" : "abc", "grades" : [ 12, 23 ] }
    { "_id" : ObjectId("5cb2ff5cd33f6ed856afe579"), "title" : "abc", "grades" : [ 12, 23, 10, 100, 34 ] }
    { "_id" : ObjectId("5cb2ff63d33f6ed856afe57a"), "title" : "abc", "grades" : "" }
    { "_id" : ObjectId("5cb2ff66d33f6ed856afe57b"), "title" : "abc", "grades" : [ ] }
    { "_id" : ObjectId("5cb2ff6bd33f6ed856afe57c"), "title" : "abc", "grades" : [ 1, 2, 3, 4, 5 ] }
> db.grades.aggregate([{$match: {grades: {$ne:''}} }])

    { "_id" : ObjectId("5cb2ff50d33f6ed856afe577"), "title" : "abc", "grades" : [ 12, 23, 1 ] }
    { "_id" : ObjectId("5cb2ff55d33f6ed856afe578"), "title" : "abc", "grades" : [ 12, 23 ] }
    { "_id" : ObjectId("5cb2ff5cd33f6ed856afe579"), "title" : "abc", "grades" : [ 12, 23, 10, 100, 34 ] }
    { "_id" : ObjectId("5cb2ff66d33f6ed856afe57b"), "title" : "abc", "grades" : [ ] }
    { "_id" : ObjectId("5cb2ff6bd33f6ed856afe57c"), "title" : "abc", "grades" : [ 1, 2, 3, 4, 5 ] }
现在在变量中投影等级计数值以及所需的其他列。

> db.grades.aggregate([{$match: {grades: {$ne:''}} }, {$project: {_id:0, title:1, count: {$size: "$grades"}  } }])

    { "title" : "abc", "count" : 3 }
    { "title" : "abc", "count" : 2 }
    { "title" : "abc", "count" : 5 }
    { "title" : "abc", "count" : 0 }
    { "title" : "abc", "count" : 5 }
现在匹配等级数组计数大于4的所需条件,如下所示:

> db.grades.aggregate([{$match: {grades: {$ne:''}} }, {$project: {_id:0, title:1, count: {$size: "$grades"}  } }, {$match: {count: {$gte: 4}}}  ])

    { "title" : "abc", "count" : 5 }
    { "title" : "abc", "count" : 5 }
    > 

可以发布样本采集对象吗?可以发布样本采集对象吗?