Answers for "how to drop multiple collections from mongo db"

Go
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 "how to drop multiple collections from mongo db"

Browse Popular Code Answers by Language