1.创建数据库test
use test
2.显示数据库
show dbs
3.创建runoob 集合
db.createCollection("runoob")
4.创建固定集合
db.createCollection("mycollection",{capped:true,size:6142800,max:10000})
5.查看已有集合
show collections
6.删除集合
db.mycollection.drop()