在 MongoDB 中没有像关系型数据库那样的表的概念,取而代之的是集合(collection),删除集合采用 db.collection.drop()
命令。
命令详解
命令语法
命令的格式如下:
> db.{collection_name}.drop()
其中,collection_name
是要删除的集合名称。
命令范例
首先进入指定数据库的上下文:
> use test
switched to db test
首先查看当前 db 中集合列表:
> show collections
mycol xxx xxxx ...
删除 mycol 集合:
> db.mycol.drop()
true