สำหรับสิ่งนี้ ให้ใช้ printjson ให้เราสร้างคอลเลกชันที่มีเอกสารก่อน -
> db.cursorDemo.insertOne({"StudentFullName":"John Smith","StudentAge":23}); { "acknowledged" : true, "insertedId" : ObjectId("5cc7f0d08f9e6ff3eb0ce442") } > db.cursorDemo.insertOne({"StudentFullName":"John Doe","StudentAge":21}); { "acknowledged" : true, "insertedId" : ObjectId("5cc7f0df8f9e6ff3eb0ce443") } > db.cursorDemo.insertOne({"StudentFullName":"Carol Taylor","StudentAge":20}); { "acknowledged" : true, "insertedId" : ObjectId("5cc7f0eb8f9e6ff3eb0ce444") } > db.cursorDemo.insertOne({"StudentFullName":"Chris Brown","StudentAge":24}); { "acknowledged" : true, "insertedId" : ObjectId("5cc7f0f88f9e6ff3eb0ce445") }
ต่อไปนี้เป็นแบบสอบถามเพื่อแสดงเอกสารทั้งหมดจากคอลเลกชันโดยใช้วิธี find() -
> db.cursorDemo.find().pretty();
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
{ "_id" : ObjectId("5cc7f0d08f9e6ff3eb0ce442"), "StudentFullName" : "John Smith", "StudentAge" : 23 } { "_id" : ObjectId("5cc7f0df8f9e6ff3eb0ce443"), "StudentFullName" : "John Doe", "StudentAge" : 21 } { "_id" : ObjectId("5cc7f0eb8f9e6ff3eb0ce444"), "StudentFullName" : "Carol Taylor", "StudentAge" : 20 } { "_id" : ObjectId("5cc7f0f88f9e6ff3eb0ce445"), "StudentFullName" : "Chris Brown", "StudentAge" : 24 }
ต่อไปนี้เป็นแบบสอบถามเพื่อทำซ้ำและพิมพ์เอกสารด้วย printjson -
> db.cursorDemo.find().forEach(printjson);
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
{ "_id" : ObjectId("5cc7f0d08f9e6ff3eb0ce442"), "StudentFullName" : "John Smith", "StudentAge" : 23 } { "_id" : ObjectId("5cc7f0df8f9e6ff3eb0ce443"), "StudentFullName" : "John Doe", "StudentAge" : 21 } { "_id" : ObjectId("5cc7f0eb8f9e6ff3eb0ce444"), "StudentFullName" : "Carol Taylor", "StudentAge" : 20 } { "_id" : ObjectId("5cc7f0f88f9e6ff3eb0ce445"), "StudentFullName" : "Chris Brown", "StudentAge" : 24 }
ต่อไปนี้เป็นแบบสอบถามที่สองหากเราต้องการเขตข้อมูลเฉพาะเช่นเขตข้อมูล “StudentFullName” และ “StudentAge” -
> db.cursorDemo.find({}, { "StudentFullName": 1,"StudentAge":1, "_id": 0 }).forEach(printjson)
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
{ "StudentFullName" : "John Smith", "StudentAge" : 23 } { "StudentFullName" : "John Doe", "StudentAge" : 21 } { "StudentFullName" : "Carol Taylor", "StudentAge" : 20 } { "StudentFullName" : "Chris Brown", "StudentAge" : 24 }