语法格式db.createCollection(name, options)
参数说明:
name: 要创建的集合名称
options: 可选参数, 指定有关内存大小及索引的选项
实例:在test数据库中创建一个集合
> use test
switched to db test
> db.createCollection("runoob")
{ "ok" : 1 }
>
删除集合
db.collection.drop()
>use mydb
switched to db mydb
>show collections
mycol
mycol2
system.indexes
runoob
>
接着删除集合2
>db.mycol2.drop()
true
>