Computer >> Máy Tính >  >> Lập trình >> MongoDB

Chỉ xóa một tài liệu duy nhất trong MongoDB

Để xóa chỉ một tài liệu trong MongoDB, hãy sử dụng remove (). Hãy để chúng tôi tạo một bộ sưu tập với các tài liệu -

> db.demo165.insertOne({"ClientId":101,"ClientName":"Chris","ClientAge":34});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e36895c9e4f06af551997cc")
}
> db.demo165.insertOne({"ClientId":102,"ClientName":"Bob","ClientAge":32});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e3689659e4f06af551997cd")
}
> db.demo165.insertOne({"ClientId":103,"ClientName":"David","ClientAge":35});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e36896d9e4f06af551997ce")
}

Hiển thị tất cả các tài liệu từ một bộ sưu tập với sự trợ giúp của phương thức find () -

> db.demo165.find();

Điều này sẽ tạo ra kết quả sau -

{ "_id" : ObjectId("5e36895c9e4f06af551997cc"), "ClientId" : 101, "ClientName" : "Chris", "ClientAge" : 34 }
{ "_id" : ObjectId("5e3689659e4f06af551997cd"), "ClientId" : 102, "ClientName" : "Bob", "ClientAge" : 32 }
{ "_id" : ObjectId("5e36896d9e4f06af551997ce"), "ClientId" : 103, "ClientName" : "David", "ClientAge" : 35 }

Sau đây là truy vấn xóa tài liệu khỏi MongoDB -

> db.demo165.remove({"ClientId":102});
WriteResult({ "nRemoved" : 1 })

Hiển thị tất cả các tài liệu từ một bộ sưu tập với sự trợ giúp của phương thức find () -

> db.demo165.find();

Điều này sẽ tạo ra kết quả sau -

{ "_id" : ObjectId("5e36895c9e4f06af551997cc"), "ClientId" : 101, "ClientName" : "Chris", "ClientAge" : 34 }
{ "_id" : ObjectId("5e36896d9e4f06af551997ce"), "ClientId" : 103, "ClientName" : "David", "ClientAge" : 35 }