mongo统计字段个数和有值个数
2020-07-29 本文已影响0人
沧海2122537190
- mongo统计字段个数和有值个数
db.getCollection("collection_name").mapReduce(
function() { for (var key in this) { emit(key, 1); } },
function(key, values) { return Array.sum(values); },
{out: {inline: 1}}
)