drop database in mongodb if exists code example
Example 1: drop a collection in mongodb
db.mycollection.drop()
Example 2: how to drop db in mongo shell
use DB_NAME // go to the db you want to delete
db.dropDatabase()
show dbs
// droppped db will not be shown