我在 mongodb 数据库中有两个集合。一个状态栏是常见的。我需要基于状态列的集合中的匹配和不匹配计数。我写了一些代码,但它只获取匹配的计数。
db.properties.aggregate([
{
$lookup: {
from: "old_properties_data",
localField: "identifier",
foreignField: "identifier",
as: "col2docs"
}
},
{"$group" : {_id:"_id", count:{$sum:1}}}
])