Mongodb: วิธีจัดกลุ่มตามหลายฟิลด์


คุณสามารถใช้ไวยากรณ์ต่อไปนี้เพื่อจัดกลุ่มหลายช่องและดำเนินการรวมใน MongoDB:

 db.collection.aggregate([
    { $group : { _id :{field1:" $field1 ", field2:" $field2 "}, count :{ $sum :1}}}
])

ตัวอย่างต่อไปนี้แสดงวิธีใช้ไวยากรณ์นี้กับ ทีม คอลเลกชันที่มีเอกสารต่อไปนี้:

 db.teams.insertOne({team: " Mavs ", position: " Guard ", points: 31 })
db.teams.insertOne({team: " Mavs ", position: " Guard ", points: 22 })
db.teams.insertOne({team: " Mavs ", position: " Forward ", points: 19 })
db.teams.insertOne({team: " Rockets ", position: " Guard ", points: 26 })
db.teams.insertOne({team: " Rockets ", position: " Forward ", points: 33 })

ตัวอย่างที่ 1: จัดกลุ่มตามหลายฟิลด์และสรุปรวม

เราสามารถใช้โค้ดต่อไปนี้เพื่อจัดกลุ่มตาม “ทีม” และ “ตำแหน่ง” และนับจำนวนครั้งของแต่ละกลุ่ม:

 db.teams.aggregate([
    { $group : { _id : {team: " $team ", position: " $position "}, count :{ $sum :1}}}
])

สิ่งนี้จะส่งกลับผลลัพธ์ต่อไปนี้:

 { _id: { team: ' Rockets ', position: ' Forward ' }, count: 1 }
{ _id: { team: ' Mavs ', position: ' Guard ' }, count: 2 }
{ _id: { team: ' Mavs ', position: ' Forward ' }, count: 1 }
{ _id: { team: ' Rockets ', position: ' Guard ' }, count: 1 }

เรายังทำการรวมกลุ่มแบบอื่นได้ ตัวอย่างเช่น เราสามารถจัดกลุ่มตาม “ทีม” และตำแหน่ง” และค้นหาผลรวมของ “คะแนน” โดยการจัดกลุ่ม:

 db.teams.aggregate([
    { $group : { _id : {team: " $team ", position: " $position "}, sumPoints :{ $sum : " $points "}}}
])

สิ่งนี้จะส่งกลับผลลัพธ์ต่อไปนี้:

 { _id: { team: ' Rockets ', position: ' Forward ' }, sumPoints: 33 }
{ _id: { team: ' Mavs ', position: ' Guard ' }, sumPoints: 53 }
{ _id: { team: ' Mavs ', position: ' Forward ' }, sumPoints: 19 }
{ _id: { team: ' Rockets ', position: ' Guard ' }, sumPoints: 26 }

สิ่งนี้บอกเรา:

  • ผลรวมคะแนนที่ผู้เล่น ‘Rockets’ ในตำแหน่ง ‘กองหน้า’ ทำได้คือ 33
  • ผลรวมคะแนนที่ผู้เล่น ‘Mavs’ ในตำแหน่ง ‘Guard’ ทำได้คือ 53

และอื่นๆ

ตัวอย่างที่ 2: จัดกลุ่มตามหลายฟิลด์และรวม (จากนั้นเรียงลำดับ)

เราสามารถใช้โค้ดต่อไปนี้เพื่อจัดกลุ่มตาม “ทีม” และตำแหน่ง” และค้นหาผลรวมของ “คะแนน” โดยการจัดกลุ่ม จากนั้นเรียง ลำดับผลลัพธ์ตาม “คะแนน” ตามลำดับจากน้อยไปหามาก :

 db.teams.aggregate([
    { $group : { _id : {team: " $team ", position: " $position "}, sumPoints :{ $sum : " $points "}}},
    { $sort : { sumPoints :1}}
])

สิ่งนี้จะส่งกลับผลลัพธ์ต่อไปนี้:

 { _id: { team: ' Mavs ', position: ' Forward ' }, sumPoints: 19 }
{ _id: { team: ' Rockets ', position: ' Guard ' }, sumPoints: 26 }
{ _id: { team: ' Rockets ', position: ' Forward ' }, sumPoints: 33 }
{ _id: { team: ' Mavs ', position: ' Guard ' }, sumPoints: 53 }

เราสามารถใช้ -1 เพื่อเรียง ลำดับผลลัพธ์ตามจุดจากมากไปน้อย :

 db.teams.aggregate([
    { $group : { _id : {team: " $team ", position: " $position "}, sumPoints :{ $sum : " $points "}}},
    { $sort : { sumPoints :-1}}
])

สิ่งนี้จะส่งกลับผลลัพธ์ต่อไปนี้:

 { _id: { team: ' Mavs ', position: ' Guard ' }, sumPoints: 53 }
{ _id: { team: ' Rockets ', position: ' Forward ' }, sumPoints: 33 }
{ _id: { team: ' Rockets ', position: ' Guard ' }, sumPoints: 26 }
{ _id: { team: ' Mavs ', position: ' Forward ' }, sumPoints: 19 }

หมายเหตุ : คุณสามารถค้นหาเอกสารฉบับเต็มสำหรับ $group ได้ที่นี่

เพิ่มความคิดเห็น

อีเมลของคุณจะไม่แสดงให้คนอื่นเห็น ช่องข้อมูลจำเป็นถูกทำเครื่องหมาย *