Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> MongoDB

ดำเนินการกลุ่มและแตกต่างกันในแบบสอบถาม MongoDB เดียว


สำหรับสิ่งนี้ เพียงใช้ MongoDB $group ให้เราสร้างคอลเลกชันที่มีเอกสารก่อน -

> db.demo16.insertOne({
...    "StudentName" : "Chris",
...    "StudentSection" : "A",
...    "StudentAge" : 23,
...    "StudentMarks" : 47
... }
... );
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e13827455d0fc6657d21f07")
}
> db.demo16.insertOne({
...    "StudentName" : "Bob",
...    "StudentSection" : "B",
...    "StudentAge" : 21,
...    "StudentMarks" : 85
... }
... );
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e13827555d0fc6657d21f08")
}
> db.demo16.insertOne( {
...    "StudentName" : "Carol",
...    "StudentSection" : "A",
...    "StudentAge" : 26,
...    "StudentMarks" : 97
... }
... );
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e13827655d0fc6657d21f09")
}

ต่อไปนี้เป็นแบบสอบถามเพื่อแสดงเอกสารทั้งหมดจากคอลเลกชันโดยใช้วิธี find() -

> db.demo16.find().pretty();

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

{
   "_id" : ObjectId("5e13827455d0fc6657d21f07"),
   "StudentName" : "Chris",
   "StudentSection" : "A",
   "StudentAge" : 23,
   "StudentMarks" : 47
}
{
   "_id" : ObjectId("5e13827555d0fc6657d21f08"),
   "StudentName" : "Bob",
   "StudentSection" : "B",
   "StudentAge" : 21,
   "StudentMarks" : 85
}
{
   "_id" : ObjectId("5e13827655d0fc6657d21f09"),
   "StudentName" : "Carol",
   "StudentSection" : "A",
   "StudentAge" : 26,
   "StudentMarks" : 97
}

ต่อไปนี้เป็นแบบสอบถามที่จะใช้กลุ่มและการดำเนินการที่แตกต่างกัน -

> db.demo16.aggregate([{
...    $group : {
...       _id : null,
...       StudentName : { $addToSet : "$StudentName" },
...       StudentSection : { $addToSet : "$StudentSection" },
...       StudentMinimumAge : { $min : "$StudentAge" },
...       StudentMaximumAge : { $max : "$StudentAge" },
...       StudentMinimumMarks: { $min : "$StudentMarks" },
...       StudentMaximumMarks : { $max : "$StudentMarks" }
... }
... }]).pretty();

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

{
   "_id" : null,
      "StudentName" : [
         "Carol",
         "Bob",
         "Chris"
      ],
   "StudentSection" : [
      "B",
      "A"
   ],
   "StudentMinimumAge" : 21,
   "StudentMaximumAge" : 26,
   "StudentMinimumMarks" : 47,
   "StudentMaximumMarks" : 97
}