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

แบบสอบถาม MongoDB เพื่อจัดกลุ่มหลาย ๆ ฟิลด์โดยใช้กรอบการรวม?


หากต้องการจัดกลุ่มหลายฟิลด์ ให้ใช้ $group ใน MongoDB ให้เราสร้างคอลเลกชันที่มีเอกสาร -

> db.demo192.insertOne({"Name":"Chris","Age":22});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e3adb9f03d395bdc21346cd")
}
> db.demo192.insertOne({"Name":"David","Age":21});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e3adba103d395bdc21346ce")
}
> db.demo192.insertOne({"Name":"Chris","Age":22});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e3adba503d395bdc21346cf")
}
> db.demo192.insertOne({"Name":"Mike","Age":24});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e3adbbf03d395bdc21346d0")
}

แสดงเอกสารทั้งหมดจากคอลเล็กชันโดยใช้วิธี find() -

> db.demo192.find();

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

{ "_id" : ObjectId("5e3adb9f03d395bdc21346cd"), "Name" : "Chris", "Age" : 22 }
{ "_id" : ObjectId("5e3adba103d395bdc21346ce"), "Name" : "David", "Age" : 21 }
{ "_id" : ObjectId("5e3adba503d395bdc21346cf"), "Name" : "Chris", "Age" : 22 }
{ "_id" : ObjectId("5e3adbbf03d395bdc21346d0"), "Name" : "Mike", "Age" : 24 }

ต่อไปนี้เป็นแบบสอบถามเพื่อจัดกลุ่มหลายฟิลด์โดยใช้กรอบการรวม -

> db.demo192.aggregate([{$group:{_id:{Age:"$Age",Name:"$Name"}}}]);

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

{ "_id" : { "Age" : 24, "Name" : "Mike" } }
{ "_id" : { "Age" : 21, "Name" : "David" } }
{ "_id" : { "Age" : 22, "Name" : "Chris" } }