Reputation: 3363
Hi the following is my document in mongodb, now i want to delete the data Kumar[] in the given document, I have used (update pop) and remove functions. one is deleting the inside data and the other is deleting the total document any help is appreciated in deleting the required data in document
{
"_id" : ObjectId("537d98c2a8357030c4f46cc0"),
"name" : "karan",
"address" : "hyd",
"hobbies" : [
"listeningmusic",
"chess"
],
"friends" : [
{
"satish" : "school"
},
{
"naresh" : "college"
},
{
"dileep" : "school"
},
{
"pavan" : "neighbour"
},
{
"kumar" : "office"
}
],
"kumar" : []
}
I have tried the following queries
db.userdata.update({kumar:"office"},{$pull:{kumar:"office"}})
db.userdata.remove({kumar:"office"},1)
Upvotes: 2
Views: 895