隐示
在MongoDB中,你不需要创建集合。当你插入一些文档时,MongoDB 会自动创建集合。
db.students.insert({"name" : "菜鸟教程"})
显示
db.createCollection("students");
显示创建固定集合
db.createCollection("students", { capped : true, autoIndexId : true, size : 6142800, max : 10000 } ) --整个集合空间大小6142800 KB, 文档最大个数为 10000 个