delete databases mongodb shell code example
Example 1: 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
Example 2: drop database mongodb command line
mongo <dbname> --eval "db.dropDatabase()"