इस मामले में, किसी विशेष क्षेत्र पर अनुक्रमणिका की अवधारणा का उपयोग करें। आइए पहले दस्तावेजों के साथ एक संग्रह बनाएं। यहां, हमने createIndex() -
. का उपयोग करके इंडेक्स भी बनाया है> db.decreasetimeusingindex.createIndex({"StudentName":1}); { "createdCollectionAutomatically" : true, "numIndexesBefore" : 1, "numIndexesAfter" : 2, "ok" : 1 } > db.decreasetimeusingindex.insertOne({"StudentName":"John Smith","StudentAge":21}); { "acknowledged" : true, "insertedId" : ObjectId("5e03960af5e889d7a51994ff") } > db.decreasetimeusingindex.insertOne({"StudentName":"John Doe","StudentAge":24}); { "acknowledged" : true, "insertedId" : ObjectId("5e039611f5e889d7a5199500") } > db.decreasetimeusingindex.insertOne({"StudentName":"Adam Smith","StudentAge":22}); { "acknowledged" : true, "insertedId" : ObjectId("5e03961df5e889d7a5199501") }
खोज () विधि की मदद से संग्रह से सभी दस्तावेजों को प्रदर्शित करने के लिए क्वेरी निम्नलिखित है -
> db.decreasetimeusingindex.find().pretty();
यह निम्नलिखित आउटपुट देगा -
{ "_id" : ObjectId("5e03960af5e889d7a51994ff"), "StudentName" : "John Smith", "StudentAge" : 21 } { "_id" : ObjectId("5e039611f5e889d7a5199500"), "StudentName" : "John Doe", "StudentAge" : 24 } { "_id" : ObjectId("5e03961df5e889d7a5199501"), "StudentName" : "Adam Smith", "StudentAge" : 22 }
विशिष्ट रिकॉर्ड खोजने के लिए क्वेरी निम्नलिखित है -
> db.decreasetimeusingindex.find({"StudentName":"Adam Smith"});
यह निम्नलिखित आउटपुट देगा -
{ "_id" : ObjectId("5e03961df5e889d7a5199501"), "StudentName" : "Adam Smith", "StudentAge" : 22 }