小编典典

获取集合中所有键的名称

all

我想获取 MongoDB 集合中所有键的名称。

例如,从此:

db.things.insert( { type : ['dog', 'cat'] } );
db.things.insert( { egg : ['cat'] } );
db.things.insert( { type : [] } );
db.things.insert( { hello : []  } );

我想获得唯一键:

type, egg, hello

阅读 72

收藏
2022-03-31

共1个答案

小编典典

你可以用 MapReduce 做到这一点:

mr = db.runCommand({
  "mapreduce" : "my_collection",
  "map" : function() {
    for (var key in this) { emit(key, null); }
  },
  "reduce" : function(key, stuff) { return null; }, 
  "out": "my_collection" + "_keys"
})

然后在结果集合上运行 distinct 以找到所有键:

db[mr.result].distinct("_id")
["foo", "bar", "baz", "_id", ...]
2022-03-31