Python Mongodb 简明教程

Python MongoDB - Create Collection

MongoDB中的集合包含一组文档,它类似于关系数据库中的表。

您可以使用 createCollection() 方法创建集合。此方法接受一个表示要创建的集合的名称的字符串值和一个选项(可选)参数。

使用此选项可以指定以下内容−

  1. 集合的大小。

  2. 截断集合中允许的最大文档数。

  3. 我们创建的集合应为截断集合(固定大小集合)。

  4. 我们创建的集合应为自动索引。

Syntax

以下是在 MongoDB 中创建集合的语法。

db.createCollection("CollectionName")

Example

以下方法创建一个名为 ExampleCollection 的集合。

> use mydb
switched to db mydb
> db.createCollection("ExampleCollection")
{ "ok" : 1 }
>

类似地,以下是使用 createCollection() 方法的选项创建集合的查询。

>db.createCollection("mycol", { capped : true, autoIndexId : true, size :
6142800, max : 10000 } )
{ "ok" : 1 }
>

Creating a Collection Using Python

以下 Python 示例连接到 MongoDB 中的数据库 (mydb),并在其中创建一个集合。

Example

from pymongo import MongoClient

#Creating a pymongo client
client = MongoClient('localhost', 27017)

#Getting the database instance
db = client['mydb']

#Creating a collection
collection = db['example']
print("Collection created........")

Output

Collection created........