Mongodb 简明教程
MongoDB - Drop Database
在本章中,我们将看到如何使用 MongoDB 命令删除数据库。
In this chapter, we will see how to drop a database using MongoDB command.
The dropDatabase() Method
MongoDB db.dropDatabase() 命令用于删除现有数据库。
MongoDB db.dropDatabase() command is used to drop a existing database.
Syntax
dropDatabase() 命令的基本语法如下 −
Basic syntax of dropDatabase() command is as follows −
db.dropDatabase()
这会删除所选的数据库。如果你没有选定任何数据库,那么它会删除默认的「test」数据库。
This will delete the selected database. If you have not selected any database, then it will delete default 'test' database.
Example
首先,通过使用命令检查可用数据库的列表, show dbs 。
First, check the list of available databases by using the command, show dbs.
>show dbs
local 0.78125GB
mydb 0.23012GB
test 0.23012GB
>
如果你想删除新数据库 <mydb> ,那么 dropDatabase() 命令如下 −
If you want to delete new database <mydb>, then dropDatabase() command would be as follows −
>use mydb
switched to db mydb
>db.dropDatabase()
>{ "dropped" : "mydb", "ok" : 1 }
>
现在检查数据库列表。
Now check list of databases.
>show dbs
local 0.78125GB
test 0.23012GB
>