在本章中,我们将了解如何使用MongoDB命令删除数据库.
dropDatabase()方法
MongoDB db.dropDatabase()命令用于删除现有数据库.
语法
dropDatabase()的基本语法命令如下 :
db.dropDatabase()
这将删除所选数据库.如果您没有选择任何数据库,那么它将删除默认的'test'数据库.
示例
首先,检查可用数据库列表使用命令, show dbs .
> show dbs local 0.78125GB mydb 0.23012GB test 0.23012GB >
如果你想删除新数据库
>use mydbswitched to db mydb>db.dropDatabase()>{ "dropped" : "mydb", "ok" : 1 }>
现在检查数据库列表.
> show dbs local 0.78125GB test 0.23012GB >