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

แบบสอบถาม MongoDB เพื่อกรองเฉพาะบันทึกที่มีคำว่า "งาน" ในเนื้อหา


ในการกรองบันทึกที่มีคำว่า “งาน” ให้ใช้ aggregate() พร้อมกับ $filter ให้เราสร้างคอลเลกชันที่มีเอกสารก่อน -

> db.demo383.insertOne(
...    {
...       "ServerName":"Jboss",
...       "ServerLogs": [
...          {
...             "status":"Working"
...          },
...          {
...             "status":"Stop"
...          },
...          {
...             "status":"Worked"
...          }
...       ]
...    }
... );
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e5b635422064be7ab44e7f1")
}

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

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

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

{
   "_id" : ObjectId("5e5b635422064be7ab44e7f1"),
   "ServerName" : "Jboss",
   "ServerLogs" : [
      {
         "status" : "Working"
      },
      {
         "status" : "Stop"
      },
      {
         "status" : "Worked"
      }
   ]
}

ต่อไปนี้เป็นแบบสอบถามเพื่อกรอง -

> db.demo383.aggregate([
...    { "$addFields": {
...       "ServerLogs": {
...          "$filter": {
...             "input": "$ServerLogs",
...             "cond": {
...                "$ne": [
...                   { "$indexOfBytes": [
...                      { "$toUpper": "$$this.status" },
...                      { "$toUpper": "work" }
...                   ]},
...                   -1
...                ]
...             }
...          }
...       }
...    }}
... ])

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

{
   "_id" : ObjectId("5e5b635422064be7ab44e7f1"), "ServerName" : "Jboss", "ServerLogs" : [
      { "status" : "Working" }, { "status" : "Worked" }
   ] 
}