Answers for "which method is used to drop a database in mongodb?"

Go
19

drop mongo database

// First show what databases have you gotten 
show dbs
// then, use the database name that you want to drop
use YOUR_DATABASE_NAME
// now you can drop it
db.dropDatabase()
// show collections should be empty now
show collections
Posted by: Guest on June-05-2020
3

drop database mongodb command line

mongo <dbname> --eval "db.dropDatabase()"
Posted by: Guest on July-19-2020

Code answers related to "which method is used to drop a database in mongodb?"

Browse Popular Code Answers by Language