MongoDB删除数据库和删除集合
程序员文章站
2022-05-28 16:53:53
...
一 MongoDB删除数据库
1、MongoDB 删除数据库的语法格式如下:
db.dropDatabase()
删除当前数据库,默认为 test,你可以使用 db 命令查看当前数据库名。
2、实例
以下实例我们删除了数据库 students。
首先,查看所有数据库:
> show dbs
local 0.000GB
students 0.000GB
test 0.000GB
接下来我们切换到数据库 students:
> use students
switched to db students
执行删除命令:
> db.dropDatabase()
{ "dropped" : "students", "ok" : 1 }
最后,我们再通过 show dbs 命令数据库是否删除成功:
> show dbs
local 0.000GB
test 0.000GB
二 删除集合
1、集合删除语法格式如下:
db.collection.drop()
2、实例
以下实例删除了 runoob 数据库中的集合 runoobtable:
> show dbs
local 0.000GB
runoob 0.000GB
students 0.000GB
test 0.000GB
> use runoob
switched to db runoob
> show tables
runoobtable
> db.runoobtable.drop()
true
> show dbs
local 0.000GB
students 0.000GB
test 0.000GB
上一篇: python集合
下一篇: Julia-数学运算(第6讲)