获取MongoDB集合中的所有字段名称?

您可以使用Map Reduce的概念。首先让我们创建一个包含文档的集合-

> db.getAllFieldNamesDemo.insertOne({"StudentFirstName":"David","StudentAge":23});

{

   "acknowledged" : true,

   "insertedId" : ObjectId("5cd998e9b50a6c6dd317ad90")

}

以下是在find()方法的帮助下显示集合中所有文档的查询-

> db.getAllFieldNamesDemo.find();

这将产生以下输出-

{ "_id" : ObjectId("5cd998e9b50a6c6dd317ad90"), "StudentFirstName" : "David", "StudentAge" : 23 }

以下是获取MongoDB集合中所有字段名称的查询-

> myMapReduce = db.runCommand({

   "mapreduce" : "getAllFieldNamesDemo",

   "map" : function() {

      for (var myKey in this) { emit(myKey, null); }

   },

   "reduce" : function(myKey, s) { return null; },

   "out": "getAllFieldNamesDemo" + "_k"

})

{

   "result" : "getAllFieldNamesDemo_k",

   "timeMillis" : 1375,

   "counts" : {

      "input" : 1,

      "emit" : 3,

      "reduce" : 0,

      "output" : 3

   },

   "ok" : 1

}

> db[myMapReduce.result].distinct("_id");

这将产生以下输出,显示文件名-

[ "StudentAge", "StudentFirstName", "_id" ]

以上是 获取MongoDB集合中的所有字段名称? 的全部内容, 来源链接: utcz.com/z/356647.html

回到顶部