1. 程式人生 > >MongoDB學習筆記(3)--刪除資料庫

MongoDB學習筆記(3)--刪除資料庫

MongoDB 刪除資料庫

語法

MongoDB 刪除資料庫的語法格式如下:

db.dropDatabase()

刪除當前資料庫,預設為 test,你可以使用 db 命令檢視當前資料庫名。

例項

以下例項我們刪除了資料庫 runoob。

首先,檢視所有資料庫:

> show dbs
local   0.078GB runoob 0.078GB test 0.078GB

接下來我們切換到資料庫 runoob:

> use runoob
switched to db runoob
>

執行刪除命令:

> db.dropDatabase() { "dropped" : "runoob", "ok" : 1 }

最後,我們再通過 show dbs 命令資料庫是否刪除成功:

> show dbs
local  0.078GB test 0.078GB >

刪除集合

集合刪除語法格式如下:

db.collection.drop()

以下例項刪除了 runoob 資料庫中的集合 site:

> use runoob
switched to db runoob
> show tables site > db.site.drop() true > show tables >