美文网首页
mongo统计字段个数和有值个数

mongo统计字段个数和有值个数

作者: 沧海2122537190 | 来源:发表于2020-07-29 11:05 被阅读0次
    • 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}}
    )
    
    
    

    相关文章

      网友评论

          本文标题:mongo统计字段个数和有值个数

          本文链接:https://www.haomeiwen.com/subject/iqvzohtx.html