Sử dụng toán tử $ unset để bỏ đặt một thuộc tính. Trước tiên, hãy để chúng tôi tạo một bộ sưu tập với các tài liệu -
> db.unsetAnAttributeDemo.insertOne( ... { ... _id: 1, ... "StudentDetails": [ ... { ... "StudentFirstName": "Ramit", ... "StudentCountryName":"UK" ... }, ... { ... "StudentFirstName": "Bob", ... "StudentCountryName":"US" ... }, ... { ... "StudentFirstName": "Carol", ... "StudentCountryName":"AUS" ... ... } ... ] ... } ... ); { "acknowledged" : true, "insertedId" : 1 }
Sau đây là truy vấn để hiển thị tất cả các tài liệu từ bộ sưu tập với sự trợ giúp của phương thức find () -
> db.unsetAnAttributeDemo.find().pretty();
Điều này sẽ tạo ra kết quả sau -
{ "_id" : 1, "StudentDetails" : [ { "StudentFirstName" : "Ramit", "StudentCountryName" : "UK" }, { "StudentFirstName" : "Bob", "StudentCountryName" : "US" }, { "StudentFirstName" : "Carol", "StudentCountryName" : "AUS" } ] }
Sau đây là truy vấn để bỏ đặt một thuộc tính khỏi một phần tử mảng. Thuộc tính “StudentCountryName” với giá trị “AUS” sẽ không được đặt -
> db.unsetAnAttributeDemo.update({"StudentDetails.StudentCountryName": "AUS"}, {$unset: {"StudentDetails.$.StudentCountryName": 1}}); WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
Hãy để chúng tôi hiển thị tài liệu từ bộ sưu tập để kiểm tra xem thuộc tính StudentCountryName với giá trị “AUS” đã được xóa hay chưa -
> db.unsetAnAttributeDemo.find().pretty();
Điều này sẽ tạo ra kết quả sau -
{ "_id" : 1, "StudentDetails" : [ { "StudentFirstName" : "Ramit", "StudentCountryName" : "UK" }, { "StudentFirstName" : "Bob", "StudentCountryName" : "US" }, { "StudentFirstName" : "Carol" } ] }