在 MongoDB 集合中建立索引?
要建立索引,請在 MongoDB 中使用 createIndex()。我們建立一個帶有文件的集合 −
> db.demo702.createIndex({"details.id":1}); { "createdCollectionAutomatically" : true, "numIndexesBefore" : 1, "numIndexesAfter" : 2, "ok" : 1 } > db.demo702.insertOne({ ... "details" : [ ... { ... id:101, ... studentInfo:{ ... "StudentName" : "Chris", ... "StudentAge" : 23, ... } ... }, ... { ... ... id: 102, ... studentInfo:{ ... "StudentName" : "Robert", ... "StudentAge" : 20, ... } ... } ... ] ... } ... ); { "acknowledged" : true, "insertedId" : ObjectId("5ea6ea3b551299a9f98c93b3") }
使用 find() 方法顯示集合中的所有文件 −
> db.demo702.find().pretty();
這將產生以下輸出 −
{ "_id" : ObjectId("5ea6ea3b551299a9f98c93b3"), "details" : [ { "id" : 101, "studentInfo" : { "StudentName" : "Chris", "StudentAge" : 23 } }, { "id" : 102, "studentInfo" : { "StudentName" : "Robert", "StudentAge" : 20 } } ] }
廣告