- MongoDB 教程
- MongoDB - 主页
- MongoDB - 概述
- MongoDB - 优点
- MongoDB - 环境
- MongoDB - 数据建模
- MongoDB - 创建数据库
- MongoDB - 删除数据库
- MongoDB - 创建集合
- MongoDB - 删除集合
- MongoDB - 数据类型
- MongoDB - 插入文档
- MongoDB - 查询文档
- MongoDB - 更新文档
- MongoDB - 删除文档
- MongoDB - 投影
- MongoDB - 限制记录
- MongoDB - 记录排序
- MongoDB - 索引
- MongoDB - 聚合
- MongoDB - 复制
- MongoDB - 分片
- MongoDB - 创建备份
- MongoDB - 部署
- MongoDB-Java
- MongoDB-PHP
- 高级 MongoDB
- MongoDB - 关系
- MongoDB - 数据库参考
- MongoDB - 涵盖查询
- MongoDB - 分析查询
- MongoDB - 原子操作
- MongoDB - 高级索引
- MongoDB - 索引限制
- MongoDB - 对象 ID
- MongoDB - 映射减少
- MongoDB - 文本搜索
- MongoDB - 正则表达式
- 与 Rockmongo 合作
- MongoDB-GridFS
- MongoDB - 上限集合
- 自动递增序列
- MongoDB 有用资源
- MongoDB - 问题与解答
- MongoDB - 快速指南
- MongoDB - 有用的资源
- MongoDB - 讨论
MongoDB - 创建集合
在本章中,我们将了解如何使用 MongoDB 创建集合。
createCollection() 方法
MongoDB db.createCollection(name, options)用于创建集合。
句法
createCollection()命令的基本语法如下 -
db.createCollection(name, options)
命令中,name为要创建的集合的名称。options是一个文档,用于指定集合的配置。
范围 | 类型 | 描述 |
---|---|---|
姓名 | 细绳 | 要创建的集合的名称 |
选项 | 文档 | (可选)指定有关内存大小和索引的选项 |
Options 参数是可选的,因此您只需指定集合的名称。以下是您可以使用的选项列表 -
场地 | 类型 | 描述 |
---|---|---|
封顶 | 布尔值 | (可选)如果为 true,则启用上限集合。上限集合是固定大小的集合,当达到其最大大小时,它会自动覆盖其最旧的条目。如果指定 true,则还需要指定 size 参数。 |
自动索引ID | 布尔值 | (可选)如果为 true,则自动在 _id 字段上创建索引。默认值为 false。 |
尺寸 | 数字 | (可选)指定上限集合的最大大小(以字节为单位)。如果 capped 为 true,那么您还需要指定此字段。 |
最大限度 | 数字 | (可选)指定上限集合中允许的最大文档数。 |
在插入文档时,MongoDB 首先检查上限集合的 size 字段,然后检查 max 字段。
例子
不带选项的createCollection()方法的基本语法如下 -
>use test switched to db test >db.createCollection("mycollection") { "ok" : 1 } >
您可以使用命令show collections检查创建的集合。
>show collections mycollection system.indexes
以下示例显示了createCollection()方法的语法,其中包含一些重要选项 -
> db.createCollection("mycol", { capped : true, autoIndexID : true, size : 6142800, max : 10000 } ){ "ok" : 0, "errmsg" : "BSON field 'create.autoIndexID' is an unknown field.", "code" : 40415, "codeName" : "Location40415" } >
在 MongoDB 中,您不需要创建集合。当您插入某些文档时,MongoDB 会自动创建集合。
>db.tutorialspoint.insert({"name" : "tutorialspoint"}), WriteResult({ "nInserted" : 1 }) >show collections mycol mycollection system.indexes tutorialspoint >