MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Rufen Sie die Namen aller Schlüssel in der Sammlung ab

Sie könnten dies mit MapReduce tun:

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"
})

Führen Sie dann „distinct“ für die resultierende Sammlung aus, um alle Schlüssel zu finden:

db[mr.result].distinct("_id")
["foo", "bar", "baz", "_id", ...]