Answers for "mongodb remove multiple elements from array"

Go
1

mongodb add multiple element to array

db.students.update(
   { name: "joe" },
   { $push: { scores: { $each: [ 90, 92, 85 ] } } }
)
Posted by: Guest on July-01-2020
0

drop multiple database mongo

// if you have a list of Databases to delete then you may run the following command?


['db1', 'db2', 'db3', 'db4'].forEach(function(i){db.getSiblingDB(i).dropDatabase()})
Posted by: Guest on November-02-2020

Code answers related to "mongodb remove multiple elements from array"

Browse Popular Code Answers by Language